-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
30 lines (29 loc) · 1.01 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
from setuptools import find_packages
from setuptools import setup
setup(
author="Collabo Software Ltda",
author_email="[email protected]",
description="Django admin widgets to render jsonschema as forms",
name="django-jsonschema-form",
long_description="Django admin widgets to render jsonschema as forms",
version="1.0.3",
url="https://www.collabo.com.br/",
license="MIT",
packages=find_packages(),
install_requires=[],
include_package_data=True,
package_data={
'jsonschemaform': ['templates/*.html', 'static/**/*.js'],
},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Topic :: Software Development :: Libraries :: Python Modules",
]
)