-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
executable file
·41 lines (35 loc) · 1.26 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
34
35
36
37
38
39
40
41
#!/usr/bin/env python
import sys
import os
from distutils.core import setup
from setuptools import find_packages
with open('README.md', 'r') as f:
long_description = f.read()
if sys.version_info < (3, 5):
print('Sorry, this module only works on 3.5+')
sys.exit(1)
VERSION = '1.2.2'
dev_version_suffix = os.getenv("DEV_VERSION_SUFFIX", "")
setup(name='postgres-audit-triggers',
version=VERSION + dev_version_suffix,
author='Jared Hobbs',
author_email='[email protected]',
license='MIT',
url='https://github.com/carta/postgres_audit_triggers',
description='Postgres audit triggers for Django',
long_description=long_description,
long_description_content_type='text/markdown',
packages=find_packages(),
include_package_data=True,
python_requires='>=3.5',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.5',
'Topic :: Text Processing',
'Topic :: Utilities',
],
keywords=['django', 'postgres', 'audit', 'triggers'])