forked from InsightLab/PyMove
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (29 loc) · 994 Bytes
/
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
"""Package setup."""
from setuptools import find_packages, setup
with open('README.md', 'r') as f:
LONG_DESCRIPTION = f.read()
with open('requirements.txt') as f:
DEPENDENCIES = f.readlines()
setup(
name='pymove',
version='2.7.2',
author='Insight Data Science Lab',
author_email='[email protected]',
license='MIT',
python_requires='>=3.6',
description='A lib python to processing and visualization '
'of trajectories and other spatial-temporal data',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
url='https://github.com/InsightLab/PyMove',
packages=find_packages(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Typing :: Typed'
],
install_requires=DEPENDENCIES,
include_package_data=True
)