Skip to content

Commit

Permalink
added requirements file for readthedocs to create the documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
skallfass committed Sep 11, 2019
1 parent 26bc278 commit 46df024
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 5 deletions.
16 changes: 16 additions & 0 deletions docs/requirements.txt
@@ -0,0 +1,16 @@
attrs==19.*,>=19.0.0
coverage-badge==1.*,>=1.0.0
ipython>=7
jinja2>=2
marshmallow<3,>=2.19
monkeytype>=19
pylint>=2
pytest==5.*,>=5.0.0
pytest-cov==2.*,>=2.0.0
pytest-datafiles==2.*,>=2.0.0
pyyaml==5.*,>=5.0.0
six>=1.12
sphinx==2.*,>=2.0.0
sphinx-autodoc-typehints==1.*,>=1.0.0
sphinx-rtd-theme==0.*,>=0.0.0
yapf>=0
5 changes: 3 additions & 2 deletions pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "cenv_tool"
version = "1.1.1"
version = "1.1.2"
description = "conda environment creation and update from meta.yaml"
license = "MIT"
authors = ["Simon Kallfass <skallfass@ouroboros.info>"]
Expand Down Expand Up @@ -44,11 +44,12 @@ init_cenv = "cenv_tool.init_cenv:main"


[tool.poetry.extras]
docs = ["sphinx", "sphinx-autodoc-typehints", "sphinx_rtd_theme"]
docs = ["sphinx", "sphinx-autodoc-typehints", "sphinx-rtd-theme"]
tests = ["pytest", "pytest-cov", "pytest-datafiles"]




[tool.dephell.main]
# read from poetry format
from = {format = "poetry", path = "pyproject.toml"}
Expand Down
5 changes: 2 additions & 3 deletions setup.py
Expand Up @@ -21,7 +21,7 @@
setup(
long_description=readme,
name='cenv_tool',
version='1.1.1',
version='1.1.2',
description='conda environment creation and update from meta.yaml',
python_requires='==3.*,>=3.7.0',
project_urls={
Expand Down Expand Up @@ -61,8 +61,7 @@
'pytest-datafiles==2.*,>=2.0.0'
],
'docs': [
'sphinx==2.*,>=2.0.0', 'sphinx-autodoc-typehints==1.*,>=1.0.0',
'sphinx-rtd-theme==0.*,>=0.0.0'
'sphinx==2.*,>=2.0.0', 'sphinx-autodoc-typehints==1.*,>=1.0.0'
]
},
)

0 comments on commit 46df024

Please sign in to comment.