-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Remove un-needed flake8 config. * Reorganize .gitignore. * Update changelog. * Reorg requirements, add script folder. * Fix tox. * Test switch to pyproject.toml. * Doc dev improvements, add pylint back for vscode, pyenv based devcontainer.
- Loading branch information
1 parent
699ca31
commit ec75580
Showing
15 changed files
with
138 additions
and
92 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,37 @@ | ||
[build-system] | ||
requires = ["setuptools", "wheel", "setuptools_scm[toml]>=6.2"] | ||
|
||
[project] | ||
name = "UnleashClient" | ||
authors = [ | ||
{ name = "Ivan Lee", email = "[email protected]" }, | ||
] | ||
description = "Python client for the Unleash feature toggle system!" | ||
dynamic = ["version"] | ||
readme = "README.md" | ||
requires-python = ">=3.7" | ||
classifiers=[ | ||
"Development Status :: 5 - Production/Stable", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Typing :: Typed", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11" | ||
] | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/Unleash/unleash-client-python" | ||
Documentation = "https://docs.getunleash.io/unleash-client-python" | ||
Changelog = "https://github.com/Unleash/unleash-client-python/blob/main/CHANGELOG.md" | ||
Repository = "https://github.com/Unleash/unleash-client-python" | ||
Issues = "https://github.com/Unleash/unleash-client-python/issues" | ||
|
||
[tool.isort] | ||
profile = "black" | ||
|
||
[tool.mypy] | ||
strict_optional = false | ||
ignore_missing_imports = true | ||
|
@@ -31,10 +65,10 @@ fixable = ["I"] | |
[tool.ruff.pylint] | ||
max-args = 25 | ||
|
||
[tool.isort] | ||
profile = "black" | ||
[tool.setuptools] | ||
include-package-data = true | ||
|
||
[tool.setuptools_scm] | ||
[tool.setuptools.packages] | ||
find = {} | ||
|
||
[build-system] | ||
requires = ["setuptools", "wheel", "setuptools_scm>=6.2"] | ||
[tool.setuptools_scm] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,42 @@ | ||
# App packages | ||
importlib_metadata | ||
requests | ||
APScheduler | ||
fcache | ||
importlib_metadata | ||
mmhash3 | ||
APScheduler | ||
python-dateutil | ||
requests | ||
semver | ||
|
||
# Development packages | ||
# - Testing | ||
black | ||
coveralls | ||
isort | ||
mimesis | ||
mypy | ||
black | ||
ruff | ||
isort | ||
pylint | ||
pytest | ||
pytest-cov | ||
pytest-flake8 | ||
pytest-html | ||
pytest-html==4.0.0rc4 | ||
pytest-mock | ||
pytest-rerunfailures | ||
pytest-runner | ||
pytest-xdist | ||
responses | ||
ruff | ||
tox | ||
|
||
# - Testing () | ||
blinker | ||
|
||
# - Tooling | ||
build | ||
setuptools_scm | ||
twine | ||
|
||
# - Docs | ||
enum-tools[sphinx] | ||
m2r2 | ||
sphinx | ||
sphinx-rtd-theme | ||
m2r2 | ||
tox | ||
|
||
# - Typing | ||
types-requests | ||
twine | ||
blinker | ||
enum-tools[sphinx] |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters