-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
40 lines (33 loc) · 1.28 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
import setuptools
import os
def strip_comments(line):
return line.split('#', 1)[0].strip()
def reqs(*f):
return list(filter(None, [strip_comments(line) for line in open(
os.path.join(os.getcwd(), *f)).readlines()]))
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name='PyTrack-lib',
version='2.0.8',
packages=setuptools.find_packages(),
# namespace_packages=['pytrack'],
url='https://github.com/cosbidev/PyTrack',
license='BSD-3-Clause-Clear',
author='Matteo Tortora',
author_email='[email protected]',
description='a Map-Matching-based Python Toolbox for Vehicle Trajectory Reconstruction',
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Information Analysis"
],
install_requires=reqs('requirements.txt')
)