From 3902bd7b989af6220b593fc58c247af52a557105 Mon Sep 17 00:00:00 2001 From: Zooxy Le Date: Tue, 16 Apr 2024 11:31:09 +0700 Subject: [PATCH] chore(ci): extra deploy info --- pyproject.toml | 10 ++++++++++ setup.py | 3 ++- 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..8a990c9 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,10 @@ +[tool.isort] +profile = "black" +src_paths = ["src/dictrule"] +honor_noqa = true + +[tool.pytest.ini_options] +addopts = "--doctest-modules" +doctest_optionflags = "NORMALIZE_WHITESPACE ELLIPSIS" +minversion = "6.2" +testpaths = ["tests"] \ No newline at end of file diff --git a/setup.py b/setup.py index d21618d..931535b 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ author=__author__, author_email=__author_email__, url=__url__, - packages=[], + packages=["dictrule"], package_data={"": ["LICENSE", "NOTICE"]}, package_dir={"": "src"}, include_package_data=True, @@ -46,6 +46,7 @@ "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10",