Skip to content

Commit

Permalink
update setup
Browse files Browse the repository at this point in the history
  • Loading branch information
sonnhfit committed Jun 19, 2022
1 parent f3b55ae commit 235d71d
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,23 @@
with open('README.md', 'r', encoding="utf8") as f:
readme = f.read()

with open("requirements.txt", "r", encoding="utf8") as f:
required = f.read().splitlines()
install_requires =[
'gym',
'numpy',
'torch>=1.11',
'cloudpickle',
'pandas',
'tqdm',
'ipython',
'pylint',
'sphinx-material',
'numpydoc',
'nbsphinx',
'recommonmark',
'sphinx-markdown-tables',
'sphinx_copybutton',
'readthedocs-sphinx-search'
]

# package configuration - for reference see:
# https://setuptools.readthedocs.io/en/latest/setuptools.html#id9
Expand All @@ -24,7 +39,7 @@
packages=find_packages(),
include_package_data=True,
python_requires=">=3.7.*",
install_requires=required,
install_requires=install_requires,
license="MIT",
zip_safe=False,
entry_points={
Expand Down

0 comments on commit 235d71d

Please sign in to comment.