-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
196 additions
and
179 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,45 +3,45 @@ | |
|
||
from setuptools import setup | ||
|
||
version = '1.6.2.dev0' | ||
version = "1.6.2.dev0" | ||
|
||
if sys.argv[-1] == 'publish': | ||
os.system('python setup.py sdist bdist_wheel upload') | ||
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() | ||
readme = open("README.rst").read() | ||
history = open("HISTORY.rst").read() | ||
|
||
setup( | ||
name='django-richtextfield', | ||
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', | ||
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', | ||
"djrichtextfield", | ||
], | ||
include_package_data=True, | ||
install_requires=[], | ||
python_requires='>=3.6', | ||
license='MIT', | ||
python_requires=">=3.6", | ||
license="MIT", | ||
zip_safe=False, | ||
keywords='django-richtextfield, djrichtextfield django wywiwyg field', | ||
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', | ||
"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", | ||
], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.