forked from LeeHanYeong/django-quill-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·36 lines (33 loc) · 1.06 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
31
32
33
34
35
36
#!/usr/bin/env python
import os
from setuptools import find_packages, setup
ROOT_DIR = os.path.dirname(os.path.abspath(__file__))
README = open(os.path.join(ROOT_DIR, "README.md")).read()
VERSION = open(os.path.join(ROOT_DIR, "version.txt")).read()
setup(
name="django-quill-editor",
version=VERSION,
url="https://github.com/LeeHanYeong/django-quill-editor",
author="lhy",
author_email="[email protected]",
license="MIT",
description="Integrate Quill editor with Django project.",
long_description=README,
long_description_content_type="text/markdown",
packages=find_packages(exclude=["test*", "sample"]),
include_package_data=True,
install_requires=[
"django>=3.0",
],
python_requires=">3.6",
zip_safe=True,
classifiers=[
"Framework :: Django",
"Framework :: Django :: 3.1",
"Framework :: Django :: 3.2",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Development Status :: 4 - Beta",
],
)