forked from jazzband/django-cookie-consent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (40 loc) · 1.28 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
from distutils.core import setup
from setuptools import find_packages
version = '0.2.7.dev0'
CLASSIFIERS = [
'Framework :: Django',
'Framework :: Django :: 1.9',
'Framework :: Django :: 2.1',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.0',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Topic :: Software Development',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
]
install_requires = [
'Django>=1.9',
'django-appconf',
]
def read(f):
return open(f, 'r').read()
setup(
name="django-cookie-consent",
description="Django cookie consent application",
version=version,
author="Informatika Mihelac",
author_email="[email protected]",
url="https://github.com/bmihelac/django-cookie-consent",
packages=find_packages(exclude=["tests"]),
include_package_data=True,
install_requires=install_requires,
classifiers=CLASSIFIERS,
long_description=read('README.md'),
long_description_content_type='text/markdown',
)