forked from cyface/django-termsandconditions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (28 loc) · 1.12 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
from setuptools import setup, find_packages
setup(
name="django-termsandconditions",
version="2.0.6",
url="https://github.com/cyface/django-termsandconditions",
license="BSD",
description="django-termsandconditions is a Django app that enables users to accept terms and conditions of a site.",
long_description=open("README.md").read(),
author="Tim White",
author_email="tim@cyface.com",
packages=find_packages(exclude=("termsandconditions_demo", "tests", "devscripts")),
include_package_data=True,
zip_safe=False,
install_requires=["django>=2.2"],
test_suite="termsandconditions_demo.run_tests.run_tests",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Internet :: WWW/HTTP",
],
)