-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (32 loc) · 1.07 KB
/
setup.py
File metadata and controls
33 lines (32 loc) · 1.07 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
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>=2.2",
],
packages=find_packages(),
include_package_data=True,
zip_safe=False,
)