-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (24 loc) · 864 Bytes
/
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
import setuptools
setuptools.setup(
name="django-attributesjsonfield",
url="https://github.com/JhonFrederick/django-attributesjsonfield",
download_url="https://github.com/JhonFrederick/django-attributesjsonfield",
license="MIT",
author="",
version="0.0.1",
author_email="",
keywords="Django JsonField AttributesJSONField",
description="Additional features for Django JSONField",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Framework :: Django",
"Framework :: Django :: 2.2",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=["django>=2.2"],
)