forked from xelixdev/django-pgviews-redux
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (34 loc) · 1.23 KB
/
setup.py
File metadata and controls
40 lines (34 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
from __future__ import absolute_import, print_function, unicode_literals
from os.path import isfile
from setuptools import setup, find_packages
if isfile("README.md"):
LONG_DESCRIPTION = open("README.md").read()
else:
LONG_DESCRIPTION = ""
setup(
name="django-pgviews-redux",
version="0.9.3",
description="Create and manage Postgres SQL Views in Django",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
author="Mikuláš Poul",
author_email="git@mikulaspoul.cz",
license="Public Domain",
packages=find_packages(),
url="https://github.com/xelixdev/django-pgviews-redux",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
],
)