-
Notifications
You must be signed in to change notification settings - Fork 81
/
setup.py
57 lines (52 loc) · 1.47 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
56
57
from setuptools import setup
# This is needed for versioneer to be importable when building with PEP 517.
# See <https://github.com/warner/python-versioneer/issues/193> and links
# therein for more information.
import os, sys
sys.path.append(os.path.dirname(__file__))
import versioneer
setup(
name='monoloco',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
packages=[
'monoloco',
'monoloco.network',
'monoloco.eval',
'monoloco.train',
'monoloco.prep',
'monoloco.visuals',
'monoloco.utils'
],
package_data={'monoloco.network': ['*.yaml']},
license='GNU AGPLv3',
description=' A 3D vision library from 2D keypoints',
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/monoloco',
zip_safe=False,
install_requires=[
'pillow<8.3', # upper limit for torchvision 0.10.0 compatibility
'openpifpaf>=v0.12.10,<=v0.12.12',
'matplotlib',
'pyyaml',
],
extras_require={
'test': [
'pylint',
'pytest',
'gdown',
'scipy', # for social distancing gaussian blur
],
'eval': [
'tabulate',
'sklearn',
'pandas',
],
'prep': [
'nuscenes-devkit==1.0.2',
],
},
)