-
Notifications
You must be signed in to change notification settings - Fork 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Run tests with django-render-block==0.10b1
- Loading branch information
Showing
1 changed file
with
21 additions
and
23 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,48 +3,46 @@ | |
from setuptools import setup, find_packages | ||
|
||
DESCRIPTION = "A Django oriented templated / transaction email abstraction" | ||
VERSION = '3.0.1' | ||
VERSION = "3.0.1" | ||
LONG_DESCRIPTION = None | ||
try: | ||
LONG_DESCRIPTION = open('README.rst').read() | ||
LONG_DESCRIPTION = open("README.rst").read() | ||
except: | ||
pass | ||
|
||
requirements = [ | ||
'django-render-block>=0.5' | ||
] | ||
requirements = ["django-render-block==0.10b1"] | ||
|
||
# python setup.py publish | ||
if sys.argv[-1] == 'publish': | ||
if sys.argv[-1] == "publish": | ||
os.system("python setup.py sdist upload") | ||
sys.exit() | ||
|
||
CLASSIFIERS = [ | ||
'Development Status :: 5 - Production/Stable', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: MIT License', | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: 3.9', | ||
'Topic :: Software Development :: Libraries :: Python Modules', | ||
'Framework :: Django', | ||
"Development Status :: 5 - Production/Stable", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
"Framework :: Django", | ||
] | ||
|
||
setup( | ||
name='django-templated-email', | ||
name="django-templated-email", | ||
version=VERSION, | ||
packages=find_packages(exclude=("tests", "tests.*")), | ||
include_package_data=True, | ||
author='Bradley Whittington', | ||
author_email='[email protected]', | ||
url='http://github.com/vintasoftware/django-templated-email/', | ||
license='MIT', | ||
author="Bradley Whittington", | ||
author_email="[email protected]", | ||
url="http://github.com/vintasoftware/django-templated-email/", | ||
license="MIT", | ||
description=DESCRIPTION, | ||
long_description=LONG_DESCRIPTION, | ||
long_description_content_type='text/x-rst', | ||
platforms=['any'], | ||
long_description_content_type="text/x-rst", | ||
platforms=["any"], | ||
classifiers=CLASSIFIERS, | ||
install_requires=requirements, | ||
) |