diff options
Diffstat (limited to 'setup.cfg')
| -rw-r--r-- | setup.cfg | 41 |
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] | ||
| 2 | name = ngus | ||
| 3 | version = attr: ngus.__version__ | ||
| 4 | author = attr: ngus.__author__ | ||
| 5 | author_email = sgs@pichove.org | ||
| 6 | description = A simple HTTP server for handleing file uploads | ||
| 7 | long_description = file: README.md | ||
| 8 | long_description_content_type = text/markdown | ||
| 9 | url = https://github.com/blackm0re/ngus | ||
| 10 | |||
| 11 | classifiers = | ||
| 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 | |||
| 26 | project_urls = | ||
| 27 | Bug Tracker = https://github.com/blackm0re/ngus/issues | ||
| 28 | Source = https://github.com/blackm0re/ngus | ||
| 29 | |||
| 30 | [options] | ||
| 31 | package_dir = | ||
| 32 | = src | ||
| 33 | packages = find: | ||
| 34 | python_requires = >=3.7 | ||
| 35 | |||
| 36 | [options.packages.find] | ||
| 37 | where = src | ||
| 38 | |||
| 39 | [options.entry_points] | ||
| 40 | console_scripts = | ||
| 41 | ngus = ngus.__main__:main | ||
