-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (29 loc) · 1 KB
/
setup.py
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
#!/usr/bin/env python
# -* encoding: utf-8 *-
import os
from setuptools import setup
HERE = os.path.dirname(__file__)
try:
long_description = open(os.path.join(HERE, 'README.rst')).read()
except IOError:
long_description = None
setup(
name="django-postgresql-setrole",
version="1.0.12",
packages=["postgresql_setrole"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX",
],
url="https://github.com/jdelic/django-postgresql-setrole/",
author="Jonas Maurus (@jdelic)",
author_email="[email protected]",
maintainer="GoPythonGo.com",
maintainer_email="[email protected]",
description="Execute SET ROLE on every PostgreSQL connection in the Django ORM",
long_description=long_description,
)