forked from skip-pay/django-GDPR
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (45 loc) · 1.5 KB
/
setup.py
File metadata and controls
50 lines (45 loc) · 1.5 KB
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
import os
from gdpr.version import get_version
from setuptools import find_packages, setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='skip-django-GDPR',
long_description=read('README.md'),
long_description_content_type='text/markdown',
version=get_version(),
description='Library for GDPR implementation',
author='Druids',
author_email='matllubos@gmail.com',
url='https://github.com/skip-pay/django-GDPR',
license='MIT',
package_dir={'gdpr': 'gdpr'},
include_package_data=True,
packages=find_packages(),
classifiers=[
'Development Status :: 3 - Alpha',
'Framework :: Django',
'Framework :: Django :: 1.10',
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.0',
'Framework :: Django :: 2.1',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3 :: Only',
'Intended Audience :: Developers',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
install_requires=[
'django>=4.2',
'skip-django-chamber>=0.7.2',
'tqdm>=4.28.1',
'pyaes>=1.6.1',
'unidecode',
'skip-django-choice-enumfields>=1.1.3.2',
],
zip_safe=False,
)