diff --git a/docs/requirements.txt b/docs/requirements.txt new file mode 100644 index 0000000..cccd79f --- /dev/null +++ b/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 diff --git a/pyproject.toml b/pyproject.toml index c7cecf7..6802596 100644 --- a/pyproject.toml +++ b/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 "] @@ -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"} diff --git a/setup.py b/setup.py index a3d3588..f74bf0e 100644 --- a/setup.py +++ b/setup.py @@ -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={ @@ -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' ] }, )