forked from gwasser/django-bootstrap4-form
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (33 loc) · 1.11 KB
/
setup.py
File metadata and controls
34 lines (33 loc) · 1.11 KB
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
from setuptools import setup, find_packages
from bootstrap4form.meta import VERSION
setup(
name='django-bootstrap4-form',
version=str(VERSION),
description="django-bootstrap4-form",
classifiers=[
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Framework :: Django",
"Framework :: Django :: 2.2",
"Environment :: Web Environment",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
keywords='bootstrap4,django',
author='gwasser',
author_email='garret@wassiverse.com',
url='http://github.com/gwasser/django-bootstrap4-form',
license='MIT',
test_suite='runtests.runtests',
install_requires = [
"Django>=3.2",
"packaging>=21.3", # Ensure this is added
],
packages=find_packages(),
include_package_data=True,
zip_safe=False,
)