Skip to content

Commit

Permalink
chore: reformat setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
radimsuckr committed Jan 17, 2024
1 parent 6b18fc3 commit ac49e01
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,26 +9,26 @@ def read(fname):

setup(
name="skip-django-psycopg2-extension",
long_description=read('README.md'),
long_description_content_type='text/markdown',
version='0.1.1.3',
long_description=read("README.md"),
long_description_content_type="text/markdown",
version="0.1.1.3",
description="Library contains django commands which helps to prepare and manage PostgreSQL database.",
url='https://github.com/skip-pay/django-psycopg2-extension',
license='MIT',
package_dir={'psycopg2_extension': 'psycopg2_extension'},
url="https://github.com/skip-pay/django-psycopg2-extension",
license="MIT",
package_dir={"psycopg2_extension": "psycopg2_extension"},
include_package_data=True,
packages=find_packages(),
classifiers=[
'Development Status :: 3 - Alpha',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
"Development Status :: 3 - Alpha",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP",
],
install_requires=[
'django>=3.1,<4.0',
"django>=3.1,<4.0",
],
zip_safe=False
zip_safe=False,
)

0 comments on commit ac49e01

Please sign in to comment.