Skip to content

Commit

Permalink
Code formatting, #64
Browse files Browse the repository at this point in the history
  • Loading branch information
mbourqui committed May 22, 2020
1 parent 1bb7f28 commit e69d4df
Showing 1 changed file with 34 additions and 34 deletions.
68 changes: 34 additions & 34 deletions setup.py
Original file line number Diff line number Diff line change
@@ -9,10 +9,10 @@

REPO_URL = "https://github.com/mbourqui/django-publications-bootstrap/"

README = ''
for ext in ['md','rst']:
README = ""
for ext in ["md", "rst"]:
try:
with open(os.path.join(os.path.dirname(__file__), 'README.' + ext)) as readme:
with open(os.path.join(os.path.dirname(__file__), "README." + ext)) as readme:
README = readme.read()
except FileNotFoundError as fnfe:
pass
@@ -22,45 +22,45 @@
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))

setup(
name='django-publications-bootstrap',
name="django-publications-bootstrap",
version=__version__,
author='Marc Bourqui',
author_email='pypi.kemar@bourqui.org',
license='MIT',
description='A Django app for managing scientific publications with a Bootstrap-powered UI.',
author="Marc Bourqui",
author_email="pypi.kemar@bourqui.org",
license="MIT",
description="A Django app for managing scientific publications with a Bootstrap-powered UI.",
long_description=README,
url=REPO_URL,
download_url=REPO_URL + 'releases/tag/v' + __version__,
download_url=REPO_URL + "releases/tag/v" + __version__,
packages=find_packages(),
include_package_data=True,
install_requires=[
'Django>=1.11.29',
'Pillow>=6.0.0',
'bibtexparser>=1.1.0',
'django-countries>=6.0',
'django-ordered-model>=2.1.0',
'django-echoices>=2.6',
"Django>=1.11.29",
"Pillow>=6.0.0",
"bibtexparser>=1.1.0",
"django-countries>=6.0",
"django-ordered-model>=2.1.0",
"django-echoices>=2.6",
],
zip_safe=False,
keywords='django scientific publications citations references bibliography',
keywords="django scientific publications citations references bibliography",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.1',
'Framework :: Django :: 2.2',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 1.11",
"Framework :: Django :: 2.1",
"Framework :: Django :: 2.2",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
],
)

0 comments on commit e69d4df

Please sign in to comment.