dj-database-url/setup.py

40 lines
1.3 KiB
Python
Raw Normal View History

2012-04-30 17:43:46 +00:00
# -*- coding: utf-8 -*-
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",
version="0.5.0",
2022-05-24 13:03:57 +00:00
url="https://github.com/jazzband/dj-database-url",
license="BSD",
author="Kenneth Reitz",
author_email="me@kennethreitz.com",
description="Use Database URLs in your Django Application.",
2019-10-03 01:46:43 +00:00
long_description=readme,
py_modules=["dj_database_url"],
2022-05-24 13:03:57 +00:00
install_requires=["Django>3.2"],
2012-04-30 17:43:46 +00:00
zip_safe=False,
include_package_data=True,
platforms="any",
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",
"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
)