-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 890 Bytes
/
setup.py
File metadata and controls
29 lines (28 loc) · 890 Bytes
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
from setuptools import setup
setup(
name="punkweb_forms",
version="0.0.1",
author="Punkweb",
author_email="punkwebnet@gmail.com",
packages=["punkweb_forms"],
url="https://github.com/Punkweb/punkweb-forms",
license="BSD-3-Clause",
description="An app to generate dynamic forms in Django.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
zip_safe=False,
include_package_data=True,
package_data={"": ["README.md"]},
install_requires=[
"django>=4.0",
],
classifiers=[
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
)