forked from Aristotle-Metadata-Enterprises/django-jsonforms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (20 loc) · 683 Bytes
/
setup.py
File metadata and controls
25 lines (20 loc) · 683 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
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
__version__ = '1.1.0'
# Get the long description from the README file
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='django-jsonforms',
version=__version__,
description='JSON Schema forms for Django',
long_description=long_description,
include_package_data=True,
url='https://github.com/Aristotle-Metadata-Enterprises/django-jsonforms',
author='Harry White',
packages=find_packages(),
install_requires=['jsonschema','django'],
license='BSD'
)