-
Notifications
You must be signed in to change notification settings - Fork 163
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
61 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,6 @@ | ||
"""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 | ||
|
@@ -16,34 +13,33 @@ | |
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':['*','*/*','*/*/*'],}, | ||
packages=['.', 'rl_games', 'docs'], | ||
package_data={'rl_games': ['*', '*/*', '*/*/*'], 'docs': ['*', '*/*', '*/*/*'], }, | ||
version='1.6.1', | ||
author='Denys Makoviichuk, Viktor Makoviichuk', | ||
author_email='[email protected], [email protected]', | ||
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" | ||
"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", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Programming Language :: Python :: 3.13", | ||
], | ||
#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 | ||
'gym>=0.17.2', | ||
'torch>=2.0.0', | ||
'numpy>=1.16.0', | ||
'tensorboard>=1.14.0', | ||
'tensorboardX>=1.6', | ||
'setproctitle', | ||
'psutil', | ||
'pyyaml', | ||
'watchdog>=2.1.9', # for evaluation process | ||
], | ||
) |