aboutsummaryrefslogtreecommitdiffstats
path: root/setup.cfg
diff options
context:
space:
mode:
authornico wellpott <nico@magicbroccoli.de>2021-04-06 11:32:04 +0200
committernico wellpott <nico@magicbroccoli.de>2021-04-06 11:32:04 +0200
commite54cb3b21568bba183eebb21835afb7d470ba9d0 (patch)
treee819f275f6b4e32799ceffa726f666e850919046 /setup.cfg
parente478c2b51f0636a3a3ad247f2f1d0f19ec66860b (diff)
parent78015c196afd5f1ae8c3d65348e0059dddcce6c5 (diff)
Merge branch 'packaging'
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg39
1 files changed, 39 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg
new file mode 100644
index 0000000..920adaf
--- /dev/null
+++ b/setup.cfg
@@ -0,0 +1,39 @@
+[metadata]
+name = blimp
+version = attr: blimp.__version__
+url = https://github.com/mightyBroccoli/blacklist_importer
+licence = GPLv3
+author = Nico Wellpott
+author_email = nico@magicbroccoli.de
+description = simple tool to download and update the JabberSpam blacklist list.
+long_description = file: README.md
+long_description_content_type = text/markdown
+classifiers =
+ Development Status :: 4 - Beta
+ Intended Audience :: System Administrators
+ Licence :: OSI Approved :: GNU General Public License v3 (GPLv3)
+ Operating System :: Unix
+ Programming Language :: Python :: 3
+ Programming Language :: Python :: 3.7
+ Programming Language :: Python :: 3.8
+ Programming Language :: Python :: 3.9
+ Programming Language :: Python :: Implementation :: CPython
+ Topic :: Internet :: WWW/HTTP :: Dynamic Content
+
+[options]
+packages = find:
+package_dir = = src
+include_package_data = true
+python_requires = >= 3.7
+
+[options.packages.find]
+where = src
+
+[options.entry_points]
+console_scripts =
+ blimp = blimp.cli:cli
+
+[tool:pytest]
+testpaths = tests
+filterwarnings =
+ error