Skip to content

Commit

Permalink
Run tests with django-render-block==0.10b1
Browse files Browse the repository at this point in the history
  • Loading branch information
fjsj committed Jul 11, 2024
1 parent 7f46387 commit 4daa253
Showing 1 changed file with 21 additions and 23 deletions.
44 changes: 21 additions & 23 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)

0 comments on commit 4daa253

Please sign in to comment.