# -*- coding: utf-8 -*- import os from setuptools import setup import allianceauth this_directory = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(this_directory, 'README.md'), encoding='utf-8') as f: long_description = f.read() install_requires = [ 'mysqlclient', 'dnspython', 'passlib', 'requests>=2.9.1,<3.0.0', 'bcrypt', 'python-slugify>=1.2', 'requests-oauthlib', 'semantic_version', 'redis>=3.3.1,<4.0.0', 'celery>=4.3.0,<5.0.0', 'celery_once', 'django>=2.2.1,<3.0', 'django-bootstrap-form', 'django-registration==2.4', 'django-sortedm2m', 'django-redis-cache>=2.1.0,<3.0.0', 'django-celery-beat>=1.1.1,<2.0.0', 'openfire-restapi', 'sleekxmpp', 'django-esi>=1.5.0,<2.0' ] testing_extras = [ 'coverage>=4.3.1', 'requests-mock>=1.2.0', 'django-nose', 'django-webtest', ] setup( name='allianceauth', version=allianceauth.__version__, author='Alliance Auth', author_email='adarnof@gmail.com', description='An auth system for EVE Online to help in-game organizations manage online service access.', long_description=long_description, long_description_content_type='text/markdown', install_requires=install_requires, extras_require={ 'testing': testing_extras }, python_requires='~=3.6', license='GPLv2', packages=['allianceauth'], url='https://gitlab.com/allianceauth/allianceauth', zip_safe=False, include_package_data=True, entry_points=""" [console_scripts] allianceauth=allianceauth.bin.allianceauth:main """, classifiers=[ 'Environment :: Web Environment', 'Framework :: Django', 'Framework :: Django :: 2.2', 'Intended Audience :: Developers', 'License :: OSI Approved :: GNU General Public License v2 (GPLv2)', 'Operating System :: POSIX :: Linux', 'Programming Language :: Python', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Topic :: Internet :: WWW/HTTP', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', ], )