summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Lorey <git@karllorey.com>2022-06-21 14:01:11 +0200
committerKarl Lorey <git@karllorey.com>2022-06-21 14:01:11 +0200
commitb8c86f4ad7aed6643362a2f7dcd53304ec17581c (patch)
treef2d9360cd87bc13e05cc0e6ffb2287ab49024ca7
parenta07bd4c412e67dcedef47eefe5849c10b7be5da0 (diff)
Set up packaging without MANIFEST.in
-rw-r--r--MANIFEST.in11
-rw-r--r--setup.cfg18
2 files changed, 5 insertions, 24 deletions
diff --git a/MANIFEST.in b/MANIFEST.in
deleted file mode 100644
index 965b2dd..0000000
--- a/MANIFEST.in
+++ /dev/null
@@ -1,11 +0,0 @@
-include AUTHORS.rst
-include CONTRIBUTING.rst
-include HISTORY.rst
-include LICENSE
-include README.rst
-
-recursive-include tests *
-recursive-exclude * __pycache__
-recursive-exclude * *.py[co]
-
-recursive-include docs *.rst conf.py Makefile make.bat *.jpg *.png *.gif
diff --git a/setup.cfg b/setup.cfg
index 3c65907..eb36b2e 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -16,20 +16,12 @@ long_description_content_type = text/x-rst
[options]
python_requires = >= 3.9
+packages = find:
-[bumpversion]
-current_version = 0.1.2
-new_version = 1.0.0rc1
-commit = True
-tag = True
-
-[bumpversion:file:HISTORY.rst]
-search = UPCOMING
-replace = {new_version} ({now:%%Y-%%m-%%d})
-
-[bumpversion:file:mlscraper/__init__.py]
-search = __version__ = "{current_version}"
-replace = __version__ = "{new_version}"
+[options.packages.find]
+exclude =
+ tests*
+ testing*
[bdist_wheel]
universal = 1