-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
91 lines (75 loc) · 2.35 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import sys
import codecs
try:
from setuptools import setup, Command
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, Command # noqa
from distutils.command.install import INSTALL_SCHEMES
extra = {}
# -*- Python 3 -*-
is_py3k = sys.version_info[0] == 3
if is_py3k:
extra.update(use_2to3=True)
NAME = 'django-postgres-audit'
class RunTests(Command):
description = 'Run the django test suite from the tests dir.'
user_options = []
extra_env = {}
extra_args = []
def run(self):
for env_name, env_value in self.extra_env.items():
os.environ[env_name] = str(env_value)
this_dir = os.getcwd()
testproj_dir = os.path.join(this_dir, 'tests')
os.chdir(testproj_dir)
sys.path.append(testproj_dir)
from django.core.management import execute_from_command_line as cli
os.environ['DJANGO_SETTINGS_MODULE'] = os.environ.get(
'DJANGO_SETTINGS_MODULE', 'settings')
prev_argv = list(sys.argv)
try:
sys.argv = [__file__, 'test', 'pgaudit', 'someapp'] + self.extra_args
cli(sys.argv)
finally:
sys.argv = prev_argv
os.chdir(this_dir)
def initialize_options(self):
pass
def finalize_options(self):
pass
if os.path.exists('README.rst'):
long_description = codecs.open('README.rst', 'r', 'utf-8').read()
else:
long_description = 'See http://github.com/StefanKjartansson/django-postgres-audit'
setup(
name=NAME,
platforms=['any'],
license='BSD',
packages=['pgaudit'],
zip_safe=False,
install_requires=[
],
cmdclass={'test': RunTests},
classifiers=[
'Development Status :: 1 - Alpha',
'Framework :: Django',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
],
entry_points={
},
long_description=long_description,
**extra
)