-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (34 loc) · 1.18 KB
/
setup.py
File metadata and controls
38 lines (34 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#! /usr/bin/env python3
from setuptools import setup
from httpuploader import MODULE_VERSION
with open("README.rst") as readme:
long_descr = readme.read()
setup(
name="httpuploader",
version=MODULE_VERSION,
py_modules=["httpuploader"],
entry_points = {
'console_scripts': ['httpuploader=httpuploader:main'],
},
author="Javier Llopis",
author_email="javier@llopis.me",
url="https://github.com/destrangis/httpuploader",
description="A directory listing server that accepts file uploads.",
long_description_content_type="text/x-rst",
long_description=long_descr,
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
]
)