-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
59 lines (54 loc) · 1.92 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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
HERE = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(HERE, 'README.md')).read()
CHANGES = open(os.path.join(HERE, 'CHANGES.md')).read()
setup(
name='django-terra-accounts',
version=open(os.path.join(HERE, 'terra_accounts', 'VERSION.md')).read().strip(),
include_package_data=True,
author="Makina Corpus",
author_email="terralego-pypi@makina-corpus.com",
description='Django accounts management for terralego apps',
long_description=README + '\n\n' + CHANGES,
description_content_type="text/markdown",
long_description_content_type="text/markdown",
packages=find_packages(),
url='https://github.com/Terralego/django-terra-accounts.git',
python_requires='>=3.6',
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Framework :: Django',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.0',
'Framework :: Django :: 3.1',
],
install_requires=[
'django>=2.2',
'psycopg2', # postgres is required to use JSONField
'django-terra-settings>=0.1.2',
"djangorestframework-jwt",
'djangorestframework',
"django-url-filter>=0.3",
],
extras_require={
'dev': [
'factory-boy',
'flake8',
'coverage',
]
}
)