-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
47 lines (42 loc) · 1.45 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
39
40
41
42
43
44
45
46
47
import os
import sys
from setuptools import setup
version = "1.6.3.dev0"
if sys.argv[-1] == "publish":
os.system("python setup.py sdist bdist_wheel upload")
print("You probably want to also tag the version now:")
print(" git tag -a %s -m 'version %s'" % (version, version))
print(" git push --tags")
sys.exit()
readme = open("README.rst").read()
history = open("HISTORY.rst").read()
setup(
name="django-richtextfield",
version=version,
description="A Django model field and widget that renders a customizable WYSIWYG/rich text editor",
long_description=readme + "\n\n" + history,
author="Jaap Roes",
author_email="[email protected]",
url="https://github.com/jaap3/django-richtextfield",
packages=[
"djrichtextfield",
],
include_package_data=True,
install_requires=[],
python_requires=">=3.6",
license="MIT",
zip_safe=False,
keywords="django-richtextfield, djrichtextfield django wywiwyg field",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
)