Skip to content

Commit

Permalink
dephell project bump did not increase version in pyproject.toml so in…
Browse files Browse the repository at this point in the history
…creased manually
  • Loading branch information
skallfass committed Oct 20, 2019
1 parent 449dfef commit 18f2256
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "fastapi_serviceutils"
version = "0.1.0"
version = "0.2.0"
description = "Utils for fastapi based services."
authors = [
"Simon Kallfass <skallfass@ouroboros.info>",
Expand Down
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
setup(
long_description=readme,
name='fastapi_serviceutils',
version='0.1.0',
version='0.2.0',
description='Utils for fastapi based services.',
python_requires='==3.*,>=3.7.0',
project_urls={
Expand All @@ -44,6 +44,9 @@
'fastapi_serviceutils.middlewares'
],
package_data={
'fastapi_serviceutils.cli.template.{{cookiecutter.service_name}}.app': [
'*.yml'
],
'fastapi_serviceutils': [
'cli/template/*.json',
'cli/template/{{cookiecutter.service_name}}/*.cfg',
Expand All @@ -53,9 +56,6 @@
'cli/template/{{cookiecutter.service_name}}/*.yaml',
'cli/template/{{cookiecutter.service_name}}/*.yml',
'cli/template/{{cookiecutter.service_name}}/docs/*.rst'
],
'fastapi_serviceutils.cli.template.{{cookiecutter.service_name}}.app': [
'*.yml'
]
},
install_requires=[
Expand All @@ -66,7 +66,7 @@
'ujson==1.*,>=1.35.0', 'uvicorn==0.*,>=0.9.0'
],
extras_require={
'devs': [
'dev': [
'autoflake==1.*,>=1.3.0', 'coverage==4.*,>=4.5.0',
'coverage-badge==1.*,>=1.0.0', 'flake8==3.*,>=3.7.0',
'ipython==7.*,>=7.8.0', 'isort==4.*,>=4.3.0', 'jedi==0.*,>=0.14.0',
Expand All @@ -77,7 +77,7 @@
'sphinx-autodoc-typehints>=1.6', 'sphinx-rtd-theme>=0.4.3',
'yapf==0.*,>=0.27.0'
],
'dev': [
'devs': [
'autoflake==1.*,>=1.3.0', 'coverage==4.*,>=4.5.0',
'coverage-badge==1.*,>=1.0.0', 'flake8==3.*,>=3.7.0',
'ipython==7.*,>=7.8.0', 'isort==4.*,>=4.3.0', 'jedi==0.*,>=0.14.0',
Expand Down

0 comments on commit 18f2256

Please sign in to comment.