-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (27 loc) · 940 Bytes
/
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
#!/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.0",
packages=["postgresql_setrole"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Programming Language :: Python :: 2.7.*",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
],
url="https://github.com/teamable-software/django-postgresql-setrole.git",
author="Armen Ghahramanyan (@teamable)",
author_email="[email protected]",
description="Execute `SET ROLE` statement on every PostgreSQL connection",
long_description=long_description,
)