-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
46 lines (43 loc) · 1.25 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
from setuptools import setup
# extract version from __init__.py
with open('monstereo/__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='monstereo',
version=VERSION,
packages=[
'monstereo',
'monstereo.network',
'monstereo.eval',
'monstereo.train',
'monstereo.prep',
'monstereo.visuals',
'monstereo.utils'
],
license='GNU AGPLv3',
description=' Perceiving Humans: from Monocular 3D Localization to Social Distancing '
'/ MonStereo: When Monocular and Stereo Meet at the Tail of 3D Human Localization',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Lorenzo Bertoni',
author_email='lorenzo.bertoni@epfl.ch',
url='https://github.com/vita-epfl/monstereo',
zip_safe=False,
install_requires=[
'openpifpaf==v0.12.1',
'matplotlib'
],
extras_require={
'eval': [
'tabulate==0.8.3',
'sklearn',
'pandas',
'pylint',
'pytest',
],
'prep': [
'nuscenes-devkit==1.0.2',
],
},
)