-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
31 lines (29 loc) · 991 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 setuptools import setup
with open("README.md", encoding="utf8") as readme_file:
readme = readme_file.read()
setup(
name="coderedcms-bootstrap4",
version="2.0.0",
author="CodeRed LLC",
author_email="[email protected]",
url="https://github.com/coderedcorp/coderedcms-bootstrap4",
description="Bootstrap 4 compatibility theme for Wagtail CRX.",
long_description=readme,
long_description_content_type="text/markdown",
license="BSD license",
include_package_data=True,
packages=["coderedcms_bootstrap4"],
python_requires=">=3.7",
install_requires=[
"django-bootstrap4==22.2",
],
classifiers=[
"Framework :: Wagtail",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
],
)