Changeset - b9741e71fc03
[Not reviewed]
Merge dev
0 2 0
Dennis Fink - 9 years ago 2016-03-02 20:51:52
dennis.fink@c3l.lu
Back to dev
2 files changed with 2 insertions and 1 deletions:
0 comments (0 inline, 0 general)
.hgtags
Show inline comments
 
11bc9e2ddf0107cfdc15a78ccb3e4b73fe891184 v5.2.0
 
0c40b177d129979e0436ddb48ac6d80792ae825c v5.2.1
 
1e9bc98a5eec8bf73ebb4019d612828807775cf3 v5.3.0
 
812e073097100155247b2ab698998e604896c37b v5.3.1
 
89496c406287f75bdcb8ffaca83b3014bee3ee95 v5.4.0
 
8d9f6524a1fd22d5e0f9e34be24f93b2d59f15a7 v5.4.1
 
75aa89d1192a128c7c5042c5d365074e2af67a7e v5.4.2
setup.py
Show inline comments
 
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.4.1-dev',
 
      version='5.4.2-dev',
 
      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(),
 
      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',
 
                   'Topic :: Internet :: WWW/HTTP',
 
                   'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
 
                   'Topic :: Internet :: WWW/HTTP :: WSGI',
0 comments (0 inline, 0 general)