-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
52 lines (48 loc) · 1.62 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
49
50
51
52
from setuptools import find_packages, setup
import djangocms_alias
CLASSIFIERS = [
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django CMS :: 4.1",
]
INSTALL_REQUIREMENTS = [
"Django>=3.2",
"django-parler>=1.4",
"django-cms>=4.1",
]
setup(
name="djangocms-alias",
author="Divio AG",
author_email="[email protected]",
maintainer="Django CMS Association and contributors",
maintainer_email="[email protected]",
url="https://github.com/django-cms/djangocms-alias",
license="BSD",
version=djangocms_alias.__version__,
description=djangocms_alias.__doc__,
long_description=open("README.rst").read(),
long_description_content_type="text/x-rst",
platforms=["OS Independent"],
classifiers=CLASSIFIERS,
install_requires=INSTALL_REQUIREMENTS,
packages=find_packages(),
include_package_data=True,
test_suite="test_settings.run",
)