Files
@ 20c97cbcdaa8
Branch filter:
Location: FVDE/ennstatus/setup.py - annotation
20c97cbcdaa8
2.6 KiB
text/x-python
Merged version_5 into default
9bfee64f690e 9bfee64f690e c0e265409c2a c0e265409c2a c0e265409c2a c0e265409c2a c0e265409c2a c0e265409c2a 52afeb759a8e c0e265409c2a c0e265409c2a c0e265409c2a 9bfee64f690e 870205f60da9 b4d763546411 b4d763546411 9bfee64f690e 9bfee64f690e 9bfee64f690e f051c683d048 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 9bfee64f690e 870205f60da9 48c026303996 9bfee64f690e 80e920addba9 3abda675c94a 9bfee64f690e ef3d2ebc53ad 3abda675c94a 1cccf4eef19c 1cccf4eef19c 870205f60da9 9bfee64f690e c0e265409c2a ca33040ed052 ca33040ed052 ca33040ed052 ca33040ed052 ca33040ed052 ed548e9a54fa ed548e9a54fa ed548e9a54fa ed548e9a54fa ed548e9a54fa ed548e9a54fa ed548e9a54fa ed548e9a54fa ed548e9a54fa ed548e9a54fa ed548e9a54fa ed548e9a54fa ed548e9a54fa 9bfee64f690e 9bfee64f690e | from setuptools import setup, find_packages
def _get_requirements():
with open('requirements.in', encoding='utf-8') as f:
lines = f.readlines()
lines = [line[:-1] for line in lines if not line.startswith('#')]
return lines
setup(name='Ennstatus',
version='5.0.0',
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/*',
'static/js/*',
'static/videos/subtitles/*.vtt',
'templates/*.html',
'templates/api/export/xml/*.xml',
'templates/donate/*.html',
'templates/root/*.html',
'templates/root/*.txt',
'templates/status/*.html',
'templates/stats/*.html',
'templates/errorpages/*.html',
'api/schema/*.json',
]},
install_requires=_get_requirements(),
entry_points={
'console_scripts': [
'ennstatuscli = ennstatus.cli:cli',
]
},
classifiers=['Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'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+)'),
]
)
|