-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (35 loc) · 1.11 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
from setuptools import setup, find_packages
from djangocms_html_tags import __version__
REQUIREMENTS = [
"django-cms>=3.5",
"djangocms-attributes-field>=1.0.0"
]
CLASSIFIERS = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Framework :: Django",
"Framework :: Django :: 1.11",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
]
setup(
author="Gökmen Görgen",
author_email="[email protected]",
description=open("README.md").read(),
include_package_data=True,
install_requires=REQUIREMENTS,
name="djangocms-html-tags",
packages=find_packages(),
test_suite="tests.settings.run",
version=__version__,
zip_safe=False,
)