# -*- 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', 'packaging>=20.1,<21', 'redis>=3.3.1,<4.0.0', 'celery>=4.3.0,<5.0.0,!=4.4.4', # 4.4.4 is missing a dependency 'celery_once>=2.0.1', 'django>=3.1.1,<3.2.0', 'django-bootstrap-form', 'django-registration>=3.1', 'django-sortedm2m', 'django-redis-cache>=3.0.0', 'django-celery-beat>=2.0.0', 'openfire-restapi', 'sleekxmpp', 'pydiscourse', 'django-esi>=2.0.4,<3.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=allianceauth.__url__, zip_safe=False, include_package_data=True, entry_points=""" [console_scripts] allianceauth=allianceauth.bin.allianceauth:main """, classifiers=[ 'Environment :: Web Environment', 'Framework :: Django', 'Framework :: Django :: 3.1', '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', ], )