dj-database-url/setup.py

46 lines
1.6 KiB
Python
Raw Normal View History

2012-04-30 17:43:46 +00:00
from setuptools import setup
2022-05-04 08:43:30 +00:00
with open("README.rst") as readme_rst:
2019-10-03 01:46:43 +00:00
readme = readme_rst.read()
2012-04-30 17:43:46 +00:00
setup(
name="dj-database-url",
2022-07-29 09:42:48 +00:00
version="1.0.0",
2022-05-24 13:03:57 +00:00
url="https://github.com/jazzband/dj-database-url",
license="BSD",
2022-07-29 09:42:23 +00:00
author="Original Author: Kenneth Reitz, Maintained by: JazzBand Community",
description="Use Database URLs in your Django Application.",
2019-10-03 01:46:43 +00:00
long_description=readme,
2022-07-29 09:42:23 +00:00
long_description_content_type="text/x-rst",
py_modules=["dj_database_url"],
install_requires=["Django>=3.2"],
2012-04-30 17:43:46 +00:00
zip_safe=False,
include_package_data=True,
platforms="any",
2022-08-09 08:32:24 +00:00
project_links={
2022-08-17 11:35:53 +00:00
"GitHub": "https://github.com/jazzband/dj-database-url/",
"Release log": (
"https://github.com/jazzband/dj-database-url/blob/master/CHANGELOG.md"
),
2022-08-09 08:32:24 +00:00
},
2012-04-30 17:43:46 +00:00
classifiers=[
"Environment :: Web Environment",
"Framework :: Django",
2022-05-24 13:03:57 +00:00
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
2022-05-24 13:03:57 +00:00
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
2012-04-30 17:43:46 +00:00
)