summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg41
1 files changed, 41 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg
new file mode 100644
index 0000000..795c715
--- /dev/null
+++ b/setup.cfg
@@ -0,0 +1,41 @@
1[metadata]
2name = ngus
3version = attr: ngus.__version__
4author = attr: ngus.__author__
5author_email = sgs@pichove.org
6description = A simple HTTP server for handleing file uploads
7long_description = file: README.md
8long_description_content_type = text/markdown
9url = https://github.com/blackm0re/ngus
10
11classifiers =
12 Development Status :: 5 - Production/Stable
13 Intended Audience :: End Users/Desktop
14 License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
15 Programming Language :: Python :: 3
16 Programming Language :: Python :: 3.7
17 Programming Language :: Python :: 3.8
18 Programming Language :: Python :: 3.9
19 Programming Language :: Python :: 3.10
20 Programming Language :: Python :: 3.11
21 Programming Language :: Python :: 3.12
22 Programming Language :: Python :: Implementation
23 Operating System :: OS Independent
24 Topic :: Internet :: WWW/HTTP :: HTTP Servers
25
26project_urls =
27 Bug Tracker = https://github.com/blackm0re/ngus/issues
28 Source = https://github.com/blackm0re/ngus
29
30[options]
31package_dir =
32 = src
33packages = find:
34python_requires = >=3.7
35
36[options.packages.find]
37where = src
38
39[options.entry_points]
40console_scripts =
41 ngus = ngus.__main__:main