forked from scikit-mobility/scikit-mobility
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·33 lines (31 loc) · 1.46 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
from setuptools import setup
long_description = open('README.md').read()
DEPENDENCIES = ['numpy', 'scipy', 'pandas', 'geopandas', 'powerlaw', 'tqdm', 'requests',
'scikit-learn', 'statsmodels', 'folium', 'matplotlib', 'geojson', 'shapely']
setup(
name='scikit-mobility',
version='1.1.2',
packages=['skmob', 'skmob.core', 'skmob.utils', 'skmob.io', 'skmob.measures', 'skmob.models',
'skmob.preprocessing', 'skmob.privacy', 'skmob.tessellation' ],
#TODO: fix it with find_packages(include=["skmob", "skmob.*"])
license='MIT',
python_requires='>=3.6',
description='A toolbox for analyzing and processing mobility data.',
long_description=long_description,
maintainer='skmob Developers',
maintainer_email='[email protected]',
classifiers=['Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved',
'Programming Language :: Python',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Operating System :: Microsoft :: Windows',
'Operating System :: Unix',
'Operating System :: MacOS',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
install_requires=DEPENDENCIES
)