-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
50 lines (46 loc) · 1.23 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('PMoE/__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='PMoE',
version=VERSION,
packages=[
'PMoE',
'PMoE.model',
'PMoE.eval',
'PMoE.trainer',
'PMoE.utils'
],
license='GNU AGPLv3',
description='PMoE: Predictive Mixture of Experts for Urban Driving',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Mohammad Nazeri',
author_email='[email protected]',
url='https://github.com/mhnazeri/pmoe',
zip_safe=False,
install_requires=[
'Pillow>=8.3.2',
'numpy>=1.19.4,<1.22.0',
'carla~=0.9.6',
'Pillow>=8.0.1,<9.1.0',
'tqdm~=4.55.1',
'opencv-python~=4.4.0.46',
'torch~=1.8.1',
'thop~=0.0.31.post2005241907',
'matplotlib~=3.3.3',
'torchvision~=0.9.1',
'omegaconf~=2.0.5',
'pandas~=1.2.1',
'imgaug~=0.4.0',
],
extras_require={
'test': [
'pylint<=2.4.2',
],
'prep': [
],
},
)