forked from django-crispy-forms/crispy-bootstrap5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
54 lines (48 loc) · 1.79 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
53
54
import os
from setuptools import setup
VERSION = "0.7"
def get_long_description():
with open(
os.path.join(os.path.dirname(os.path.abspath(__file__)), "README.md"),
encoding="utf8",
) as fp:
return fp.read()
setup(
name="crispy-bootstrap5",
description="Bootstrap5 template pack for django-crispy-forms",
long_description=get_long_description(),
long_description_content_type="text/markdown",
author="David Smith",
url="https://github.com/django-crispy-forms/crispy-bootstrap5",
project_urls={
"Issues": "https://github.com/django-crispy-forms/crispy-bootstrap5/issues",
"CI": "https://github.com/django-crispy-forms/crispy-bootstrap5/actions",
"Changelog": (
"https://github.com/django-crispy-forms/crispy-bootstrap5/releases"
),
},
license="MIT",
version=VERSION,
packages=["crispy_bootstrap5"],
install_requires=["django-crispy-forms>=1.13.0", "django>=3.2"],
extras_require={"test": ["pytest", "pytest-django"]},
tests_require=["crispy-bootstrap5[test]"],
python_requires=">=3.7",
include_package_data=True,
classifiers=[
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)