forked from JonHerr/django-cookie-consent
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
31 lines (26 loc) · 800 Bytes
/
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
from distutils.core import setup
from setuptools import find_packages
VERSION = __import__("cookie_consent").__version__
CLASSIFIERS = [
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Topic :: Software Development',
]
install_requires = [
'Django>=1.4.2',
'django-appconf',
]
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,
)