-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
35 lines (34 loc) · 1.14 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
from setuptools import setup, find_packages
from bootstrap5form.meta import VERSION
setup(
name='django-bootstrap5-form',
version=str(VERSION),
description="django-bootstrap5-form",
classifiers=[
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Framework :: Django",
"Framework :: Django :: 3.0",
"Framework :: Django :: 3.1",
"Framework :: Django :: 3.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='bootstrap5,django',
author='gwasser',
author_email='[email protected]',
url='http://github.com/gwasser/django-bootstrap5-form',
license='MIT',
test_suite='runtests.runtests',
install_requires = [
"django>=3,<4",
],
packages=find_packages(),
include_package_data=True,
zip_safe=False,
)