Files
@ b22d2bbdd641
Branch filter:
Location: FVDE/ennstatus/setup.py - annotation
b22d2bbdd641
2.1 KiB
text/x-python
pep8
9bfee64f690e 9bfee64f690e 9bfee64f690e d97f8cbb8912 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 3abda675c94a 9bfee64f690e 3abda675c94a 3abda675c94a 9bfee64f690e 9bfee64f690e a763f12fd6d9 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e | from setuptools import setup, find_packages
setup(name='Ennstatus',
version='4.0.1',
description='Ennstatus provides the user with vital information about the status of the organizations Tor servers.',
author='Frënn vun der Ënn',
author_email='info@enn.lu',
url='https://bitbucket.org/fvde/ennstatus',
license="GPLv3+",
packages=find_packages(),
package_data={'ennstatus': ['static/css/*.css',
'static/css/flags/img/png/*.png',
'static/css/flags/img/gif/*.gif',
'static/css/flags/*.css',
'static/files/*',
'static/images/*',
'static/videos/*',
'templates/*.html',
'templates/api/extract/xml/*.xml',
'templates/donate/*.html',
'templates/root/*.html',
'templates/status/*.html',
'templates/stats/*.html'
]},
install_requires=['Flask', 'pygeoip', 'Flask-Bootstrap',
'Flask-Compress', 'Flask-SSLify', 'Flask-WTF'],
classifiers=["Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Topic :: Internet",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Internet :: WWW/HTTP :: WSGI",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
("License :: OSI Approved :: "
"GNU General Public License v3 or later (GPLv3+)"),
]
)
|