-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 981 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 981 Bytes
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
import setuptools
import tarball_httpd.__main__ as main
with open('README.rst', 'r') as fh:
long_description = fh.read()
setuptools.setup(
name='tarball_httpd',
version=main.__version__,
description='Simple http server, streaming directories as tarballs.',
author='zrthstr',
author_email='zrth1k@gmail.com',
url='https://github.com/zrthstr/tarball_httpd',
packages=setuptools.find_packages(),
license='PSFL',
long_description=long_description,
long_description_content_type='text/x-rst',
keywords='web http server tarball archive download filesharing stream',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: Python Software Foundation License',
'Topic :: Internet :: WWW/HTTP :: HTTP Servers',
'Topic :: System :: Archiving',
'Topic :: Utilities',
'Topic :: Communications :: File Sharing',
'Operating System :: OS Independent',
],
)