-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (34 loc) · 852 Bytes
/
setup.py
File metadata and controls
42 lines (34 loc) · 852 Bytes
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
# -*- coding: utf-8 -*-
from setuptools import setup
package_dir = \
{'': 'src'}
packages = \
['vikingzero', 'vikingzero.agents', 'vikingzero.environments']
package_data = \
{'': ['*']}
install_requires = \
['PyYAML',
'matplotlib',
'numpy>=1.15.4,<2.0.0',
'tensorboard',
'tensorboardX>=2.1,<3.0',
'torch==1.7.1',
'tqdm']
setup_kwargs = {
'name': 'vikingzero',
'version': '0.1.2',
'description': '',
'long_description': None,
'author': 'David SeWell',
'author_email': 'davidsewell3145@gmail.com',
'maintainer': None,
'maintainer_email': None,
'url': None,
'package_dir': package_dir,
'packages': packages,
'package_data': package_data,
'install_requires': install_requires,
'python_requires': '>=3.6.2,<4.0.0',
}
setup(**setup_kwargs)
# This setup.py was autogenerated using poetry.