forked from allianceauth/allianceauth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
60 lines (53 loc) · 1.34 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# -*- 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',
'semantic_version',
'redis',
'celery>=4.0.2',
'celery_once',
'django>=1.11',
'django-bootstrap-form',
'django-registration==2.4',
'django-sortedm2m',
'django-redis-cache>=1.7.1',
'django-celery-beat',
'openfire-restapi',
'sleekxmpp',
'adarnauth-esi>=1.4.10,<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='[email protected]',
description='An auth system for EVE Online to help in-game organizations manage online service access.',
install_requires=install_requires,
extras_require={
'testing': testing_extras,
':python_version=="3.4"': ['typing'],
},
python_requires='~=3.4',
license='GPLv2',
packages=['allianceauth'],
url='https://github.com/allianceauth/allianceauth',
zip_safe=False,
include_package_data=True,
entry_points="""
[console_scripts]
allianceauth=allianceauth.bin.allianceauth:main
""",
)