forked from LeeHanYeong/django-quill-editor
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
executable file
·38 lines (33 loc) · 1.07 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
37
38
#!/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='Lee HanYeong',
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',
],
python_requires=">3.5",
zip_safe=True,
classifiers=[
'Framework :: Django',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.1',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Development Status :: 4 - Beta',
]
)