Skip to content

Commit

Permalink
Split requirements to docs and full
Browse files Browse the repository at this point in the history
  • Loading branch information
m-wojnar committed Jul 15, 2023
1 parent 2af81e5 commit 8c2390f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 2 additions & 0 deletions requirements/requirements-docs.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
sphinx~=7.0.1
sphinx-rtd-theme~=1.2.2
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@ joblib~=1.3.1
# ns3-ai==1.0.2
pygame~=2.5.0
seaborn~=0.12.2
sphinx~=7.0.1
sphinx-rtd-theme~=1.2.2
tensorflow~=2.13.0
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,13 @@ def read_file(filename: str) -> str:
author='Maksymilian Wojnar and Wojciech Ciężobka',
url='https://github.com/m-wojnar/reinforced-lib',
download_url='https://github.com/m-wojnar/reinforced-lib/archive/refs/tags/v0.2.0.tar.gz',
keywords='machine-learning, reinforcement-learning, reinforcement-learning-agent, jax',
keywords='deep-reinforcement-learning, jax, library, machine-learning, reinforcement-learning',
python_requires='>=3.8, <4',
install_requires=read_requirements('requirements/requirements.txt'),
extras_require={'dev': read_requirements('requirements/requirements-dev.txt')},
extras_require={
'docs': read_requirements('requirements/requirements-docs.txt'),
'full': read_requirements('requirements/requirements-full.txt')
},
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
Expand Down

0 comments on commit 8c2390f

Please sign in to comment.