forked from ochrstn/django-editorjs-field
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 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
26
import setuptools
with open("README.md", "r") as fh:
LONG_DESCRIPTION = fh.read()
setuptools.setup(
name="django-editorjs-field",
version="0.0.3",
author="Oliver Christen",
author_email="[email protected]",
description="editorjs.io integration as django model/form field",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/ochrstn/django-editorjs-field",
packages=["editorjs_field"],
include_package_data=True,
install_requires=['django>=1.8'],
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python :: 3",
"Framework :: Django :: 2.2",
"Environment :: Web Environment",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
)