-
Notifications
You must be signed in to change notification settings - Fork 27
/
setup.py
38 lines (33 loc) · 872 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
34
35
36
37
38
"""setup trajnetplusplusdataset"""
from setuptools import setup
# extract version from __init__.py
with open('trajnetdataset/__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='trajnetdataset',
version=VERSION,
packages=[
'trajnetdataset',
],
license='MIT',
description='Trajnet++ dataset.',
long_description=open('README.rst').read(),
author='Sven Kreiss',
author_email='me@svenkreiss.com',
url='https://github.com/vita-epfl/trajnetplusplusdataset',
install_requires=[
'pysparkling',
'scipy',
'trajnetplusplustools',
],
extras_require={
'test': [
'pylint',
'pytest',
],
'plot': [
'matplotlib',
]
},
)