File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11[build-system ]
2- requires = [" poetry-core>=1.0.0" ]
3- build-backend = " poetry.core.masonry.api "
2+ requires = [" poetry-core>=1.0.0" , " poetry-dynamic-versioning>=1.0.0,<2.0.0 " ]
3+ build-backend = " poetry_dynamic_versioning.backend "
44
55[tool .poetry ]
66name = " userlist"
7- version = " 0.3 .0"
7+ version = " 0.0 .0"
88description = " Python client for the Userlist API"
99homepage = " https://github.com/userlist/userlist-python"
1010repository = " https://github.com/userlist/userlist-python"
@@ -23,6 +23,9 @@ classifiers = [
2323python = " >=3.8"
2424requests = " >=2.31.0"
2525
26+ [tool .poetry .requires-plugins ]
27+ poetry-dynamic-versioning = { version = " >=1.0.0,<2.0.0" , extras = [" plugin" ] }
28+
2629[tool .poetry .group .dev .dependencies ]
2730pytest = " >=7.4.0"
2831pytest-cov = " >=4.1.0"
@@ -46,4 +49,7 @@ exclude = '''
4649 | build
4750 | dist
4851)/
49- '''
52+ '''
53+ [tool .poetry-dynamic-versioning ]
54+ enable = true
55+ vcs = [" git" ]
Original file line number Diff line number Diff line change 22from .config import Config
33from .client import Client
44
5- __version__ = "0.3 .0"
5+ __version__ = "0.0 .0"
66__all__ = ["Push" , "Config" , "Client" ]
You can’t perform that action at this time.
0 commit comments