mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-09 12:30:15 +02:00
Temporarily use latest snapshot for esi for dj20 Correct admin urls include Manually correct old ts3 table migration Remove obsolete services migrations Remove bootstrap pagination package Fix url namespacing
56 lines
1.2 KiB
Python
56 lines
1.2 KiB
Python
# -*- coding: utf-8 -*-
|
|
from setuptools import setup
|
|
import allianceauth
|
|
|
|
install_requires = [
|
|
'mysqlclient',
|
|
'dnspython',
|
|
'passlib',
|
|
'requests>=2.9.1',
|
|
'bcrypt',
|
|
'python-slugify>=1.2',
|
|
'requests-oauthlib',
|
|
|
|
'redis',
|
|
'celery>=4.0.2',
|
|
|
|
'django>=1.11',
|
|
'django-bootstrap-form',
|
|
'django-registration',
|
|
'django-sortedm2m',
|
|
'django-redis-cache>=1.7.1',
|
|
'django-celery-beat',
|
|
|
|
# Openfire
|
|
'openfire-restapi',
|
|
'sleekxmpp',
|
|
|
|
'adarnauth-esi>=1.4,<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='Eve alliance auth for the 99 percent',
|
|
# Any changes in these package requirements
|
|
# should be reflected in requirements.txt as well.
|
|
install_requires=install_requires,
|
|
extras_require={
|
|
'testing': testing_extras,
|
|
},
|
|
license='GPLv2',
|
|
packages=['allianceauth'],
|
|
url='https://github.com/allianceauth/allianceauth',
|
|
zip_safe=False,
|
|
include_package_data=True,
|
|
)
|