summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py47
1 files changed, 3 insertions, 44 deletions
diff --git a/setup.py b/setup.py
index fbdefcb..a5d21d8 100644
--- a/setup.py
+++ b/setup.py
@@ -1,46 +1,5 @@
1import setuptools 1# Legacy setup for some build / install systems
2 2
3import ngus 3from setuptools import setup
4 4
5with open('README.md', 'r') as fh: 5setup()
6 long_description = fh.read()
7
8
9setuptools.setup(
10 name='ngus',
11 version=ngus.__version__,
12 author=ngus.__author__,
13 author_email='sgs@pichove.org',
14 description='A simple HTTP server for handleing file uploads',
15 long_description=long_description,
16 long_description_content_type='text/markdown',
17 url='https://github.com/blackm0re/ngus',
18 packages=setuptools.find_packages(),
19 exclude_package_data={'': ['.gitignore']},
20 entry_points={
21 'console_scripts': [
22 'ngus=ngus.__main__:main',
23 ],
24 },
25 classifiers=[
26 'Development Status :: 5 - Production/Stable',
27 'Intended Audience :: End Users/Desktop',
28 ('License :: OSI Approved :: GNU General Public License v3 or later '
29 '(GPLv3+)'),
30 'Programming Language :: Python :: 3 :: Only',
31 'Programming Language :: Python :: 3.6',
32 'Programming Language :: Python :: 3.7',
33 'Programming Language :: Python :: 3.8',
34 'Programming Language :: Python :: 3.9',
35 'Programming Language :: Python :: 3.10',
36 'Programming Language :: Python :: Implementation',
37 'Operating System :: OS Independent',
38 'Topic :: Internet :: WWW/HTTP :: HTTP Servers'
39 ],
40 keywords='upload http httpd',
41 project_urls={
42 'Bug Reports': 'https://github.com/blackm0re/ngus/issues',
43 'Source': 'https://github.com/blackm0re/ngus'
44 },
45 python_requires='>=3.6',
46)