Compare commits
2 Commits
0819d23f47
...
864b2161b1
Author | SHA1 | Date |
---|---|---|
Sebastian Pipping | 864b2161b1 | |
Sebastian Pipping | 8fe46c42a7 |
25
setup.py
25
setup.py
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/python
|
#!/usr/bin/python
|
||||||
|
|
||||||
from distutils.core import setup
|
from setuptools import setup
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='servefile',
|
name='servefile',
|
||||||
|
@ -9,7 +9,7 @@ setup(
|
||||||
platforms='posix',
|
platforms='posix',
|
||||||
version='0.4.4',
|
version='0.4.4',
|
||||||
license='GPLv3 or later',
|
license='GPLv3 or later',
|
||||||
url='http://seba-geek.de/stuff/servefile/',
|
url='https://seba-geek.de/stuff/servefile/',
|
||||||
author='Sebastian Lohff',
|
author='Sebastian Lohff',
|
||||||
author_email='seba@someserver.de',
|
author_email='seba@someserver.de',
|
||||||
install_requires=['pyopenssl'],
|
install_requires=['pyopenssl'],
|
||||||
|
@ -19,5 +19,24 @@ setup(
|
||||||
'requests',
|
'requests',
|
||||||
],
|
],
|
||||||
scripts=['servefile'],
|
scripts=['servefile'],
|
||||||
|
classifiers=[
|
||||||
|
'Development Status :: 5 - Production/Stable',
|
||||||
|
'Environment :: Console',
|
||||||
|
'Intended Audience :: End Users/Desktop',
|
||||||
|
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
|
||||||
|
'Natural Language :: English',
|
||||||
|
'Programming Language :: Python',
|
||||||
|
'Programming Language :: Python :: 2',
|
||||||
|
'Programming Language :: Python :: 2.7',
|
||||||
|
'Programming Language :: Python :: 3',
|
||||||
|
'Programming Language :: Python :: 3.6',
|
||||||
|
'Programming Language :: Python :: 3.7',
|
||||||
|
'Programming Language :: Python :: 3.8',
|
||||||
|
'Topic :: Communications',
|
||||||
|
'Topic :: Communications :: File Sharing',
|
||||||
|
'Topic :: Internet',
|
||||||
|
'Topic :: Internet :: WWW/HTTP',
|
||||||
|
'Topic :: Internet :: WWW/HTTP :: HTTP Servers',
|
||||||
|
'Topic :: Utilities',
|
||||||
|
],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue