forked from trajminer/trajminer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (40 loc) · 1.47 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
from setuptools import setup, find_packages
from os import path
JOBLIB_MIN_VERSION = '0.13.0'
NUMPY_MIN_VERSION = '1.15.3'
SKLEARN_MIN_VERSION = '0.19.1'
KERAS_MIN_VERSION = '2.2.4'
GEOHASH2_MIN_VERSION = '1.1'
PANDAS_MIN_VERSION = '0.24.1'
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='trajminer',
version='0.1.0.a2',
description='A trajectory mining library',
long_description=long_description,
url='https://trajminer.github.io/',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Libraries',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'License :: OSI Approved :: MIT License'
],
keywords='trajectory mining',
packages=find_packages(exclude=['contrib', 'doc', 'tests']),
install_requires=[
'joblib>={0}'.format(JOBLIB_MIN_VERSION),
'numpy>={0}'.format(NUMPY_MIN_VERSION),
'scikit-learn>={0}'.format(SKLEARN_MIN_VERSION),
'keras>={0}'.format(KERAS_MIN_VERSION),
'geohash2>={0}'.format(GEOHASH2_MIN_VERSION),
'pandas>={0}'.format(PANDAS_MIN_VERSION)
]
)