-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
31 lines (30 loc) · 985 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 find_packages, setup
setup(
name="crispy-forms-bootstrap2",
version="2024.1",
packages=find_packages(),
url="https://github.com/django-crispy-forms/crispy-forms-bootstrap2",
license="MIT",
description="Django-crispy-forms bootstrap2 templates",
install_requires=["django-crispy-forms >= 1.8"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
],
package_data={
"crispy_forms_bootstrap2": [
"templates/bootstrap/*",
"templates/bootstrap/layout/*",
],
},
include_package_data=True,
zip_safe=False,
)