-
Notifications
You must be signed in to change notification settings - Fork 26
/
setup.py
executable file
·111 lines (94 loc) · 3.11 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
import distutils
import subprocess
from os.path import dirname, join
from setuptools import setup, find_packages
def read(*args):
return open(join(dirname(__file__), *args)).read()
class ToxTestCommand(distutils.cmd.Command):
"""Distutils command to run tests via tox with 'python setup.py test'.
Please note that in our standard configuration tox uses the dependencies in
`requirements/dev.txt`, the list of dependencies in `tests_require` in
`setup.py` is ignored!
See https://docs.python.org/3/distutils/apiref.html#creating-a-new-distutils-command
for more documentation on custom distutils commands.
"""
description = "Run tests via 'tox'."
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
self.announce("Running tests with 'tox'...", level=distutils.log.INFO)
return subprocess.call(['tox'])
exec(read('pganonymize', 'version.py'))
install_requires = [
'faker',
'faker>=3.0,<4.0; python_version=="2.7"',
'parmap; python_version>="3.6"',
'parmap==1.5.2; python_version<"3.6"',
'pgcopy',
'pgcopy>=1.5,<1.6; python_version<"3.6"',
'psycopg2',
'psycopg2>=2.8.4,<2.9; python_version<"3.6"',
'pyyaml',
'pyyaml>=5.4.1,<6.0; python_version<"3.6"',
'tqdm'
]
tests_require = [
'coverage',
'flake8',
'pydocstyle',
'pylint',
'pytest-pep8',
'pytest-cov',
'pytest-pythonpath',
'pytest',
]
setup(
name='pganonymize',
version=__version__, # noqa
description='Commandline tool to anonymize PostgreSQL databases',
long_description=read('README.rst'),
author='Henning Kage',
author_email='[email protected]',
maintainer='Henning Kage',
maintainer_email='[email protected]',
url='https://github.com/rheinwerk-verlag/pganonymize',
license='MIT license',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'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',
'Programming Language :: Python :: 3.12',
'Topic :: Database'
],
packages=find_packages(include=['pganonymize*']),
include_package_data=True,
install_requires=install_requires,
tests_require=tests_require,
cmdclass={
'test': ToxTestCommand,
},
entry_points={
'console_scripts': [
'pganonymize = pganonymize.__main__:main'
]
}
)