-
Notifications
You must be signed in to change notification settings - Fork 154
/
setup.py
49 lines (45 loc) · 1.58 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
"""Setup script for rl_games"""
import sys
import os
import pathlib
from setuptools import setup, find_packages
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / "README.md").read_text()
print(find_packages())
setup(name='rl-games',
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/Denys88/rl_games",
#packages=[package for package in find_packages() if package.startswith('rl_games')],
packages = ['.','rl_games','docs'],
package_data={'rl_games':['*','*/*','*/*/*'],'docs':['*','*/*','*/*/*'],},
version='1.6.1',
author='Denys Makoviichuk, Viktor Makoviichuk',
author_email='trrrrr97@gmail.com, victor.makoviychuk@gmail.com',
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10"
],
#packages=["rlg"],
include_package_data=True,
install_requires=[
# this setup is only for pytorch
#
'gym>=0.17.2',
'torch>=1.7.0',
'numpy>=1.16.0',
'tensorboard>=1.14.0',
'tensorboardX>=1.6',
'setproctitle',
'psutil',
'pyyaml',
'watchdog>=2.1.9,<3.0.0', # for evaluation process
],
)