-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathsetup.py
55 lines (50 loc) · 1.59 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
51
52
53
54
55
from setuptools import find_packages, setup
# extract version from __init__.py
with open('socialforce/__init__.py', 'r', encoding='utf8') as f:
VERSION_LINE = [l for l in f if l.startswith('__version__')][0]
VERSION = VERSION_LINE.split('=')[1].strip()[1:-1]
setup(
name='socialforce',
version=VERSION,
packages=find_packages(),
license='MIT',
description='PyTorch implementation of DeepSocialForce.',
long_description=open('README.md', encoding='utf8').read(),
long_description_content_type='text/markdown',
author='Sven Kreiss',
author_email='[email protected]',
url='https://github.com/svenkreiss/socialforce',
install_requires=[
'numpy',
'torch',
],
extras_require={
'dev': [
'jupyter-book',
'matplotlib',
'nbconvert',
'nbstripout',
'nbval',
'pycodestyle',
'pylint~=2.10',
'pytest',
],
'plot': [
'flameprof',
'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',
]
)