-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
52 lines (47 loc) · 1.43 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# setup.py
import os
from setuptools import setup, find_packages
# get current path
here = os.path.abspath(os.path.dirname(__file__))
# get the path to the README file
with open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
# Read in the requirements
with open(os.path.join(here, 'requirements.txt')) as f:
requirements = list(map(str, f.read().splitlines()))
setup(
version='1.0.0',
name="gps_uvsq_utils",
author="UVSQ Datascale students",
long_description=long_description,
long_description_content_type='text/markdown',
description="Private Python library who provides incredible features.",
packages=find_packages(),
include_package_data=True,
license="GPL",
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Utilities',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Topic :: System :: Operating System',
],
python_requires='>=3.8',
setup_requires=['setuptools-git-versioning'],
version_config={
"dirty_template": "{tag}",
},
install_requires=[
'pandas',
'numpy',
'streamlit',
'geopy',
],
zip_safe=False,
package_data={
'gps_uvsq_utils': ['assets/*'],
},
url="https://gitlab.com/abdoufermat5/gps_utils"
)