-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (42 loc) · 1.31 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
import setuptools
from setuptools import setup
with open('README.md', 'r') as f:
long_description = f.read()
descr_lines = long_description.split('\n')
descr_no_gifs = [] # gifs are not supported on PyPI web page
for dl in descr_lines:
if not ('<img src=' in dl and 'gif' in dl):
descr_no_gifs.append(dl)
long_description = '\n'.join(descr_no_gifs)
setup(
# Information
name='doom-domain-adaption',
description='High throughput asynchronous reinforcement learning framework',
long_description=long_description,
long_description_content_type='text/markdown',
version='0.1.0',
url='https://github.com/TTomilin/DoomDA.git',
author='Tristan Tomilin',
project_urls={
'Github': 'https://github.com/TTomilin/DoomDA.git',
},
install_requires=[
'numpy>=1.18.1',
'torch>=1.6',
'gym>=0.17.1',
'tensorboard>=1.15.0',
'tensorboardx>=2.0',
'psutil>=5.7.0',
'threadpoolctl>=2.0.0',
'colorlog',
'faster-fifo>=1.2.0',
'filelock',
'opencv-python',
'wandb>=0.12.9',
'box2d-py',
],
package_dir={'': './'},
packages=setuptools.find_packages(where='./', include='sample_factory*'),
include_package_data=True,
python_requires='>=3.7',
)