Changeset - 3e7e634fd4bd
[Not reviewed]
version_5
0 2 0
Dennis Fink - 9 years ago 2015-10-19 22:32:09
dennis.fink@c3l.lu
Update setup.py
2 files changed with 4 insertions and 24 deletions:
0 comments (0 inline, 0 general)
MANIFEST.in
Show inline comments
 
recursive-include ennstatus/static *.css
 
recursive-include ennstatus/static *.png
 
recursive-include ennstatus/static *.gif
 
recursive-include ennstatus/templates *.html
 
recursive-include ennstatus/templates *.xml
 
recursive-include ennstatus/static *
 
recursive-include ennstatus/templates *
 
recursive-include ennstatus/api/schema *
setup.py
Show inline comments
 
@@ -10,44 +10,26 @@ def _get_requirements():
 
    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(),
 
      include_package_data=True,
 
      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',
0 comments (0 inline, 0 general)