-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.py
50 lines (45 loc) · 1.36 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
from setuptools import setup
# extract version from __init__.py
with open('trajnetplusplustools/__init__.py', 'r') as f:
VERSION_LINE = [l for l in f if l.startswith('__version__')][0]
VERSION = VERSION_LINE.split('=')[1].strip()[1:-1]
setup(
name='trajnetplusplustools',
version=VERSION,
packages=[
'trajnetplusplustools',
],
license='MIT',
description='Trajnet++ tools.',
long_description=open('README.rst').read(),
author='Parth Kothari',
author_email='[email protected]',
url='https://github.com/vita-epfl/trajnetplusplustools',
install_requires=[
'numpy',
'scipy',
'pykalman',
],
extras_require={
'test': [
'pylint',
'pytest',
],
'plot': [
'matplotlib',
]
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: PyPy',
]
)