forked from georgeto/pgantomizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (45 loc) · 1.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
from os import path
from setuptools import find_packages, setup
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name="pgantomizer",
version='0.1.1',
description="Anonymize data in your PostgreSQL dababase with ease.",
long_description=long_description,
author='Oskar Hollmann',
author_email='oskar@hollmann.me',
url='https://github.com/asgeirrr/pgantomizer',
license='BSD',
package_dir={'pgantomizer': 'pgantomizer'},
include_package_data=True,
packages=find_packages(),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Topic :: Database :: Front-Ends',
],
keywords='postgres anonymization dump',
install_requires=[
'psycopg2~=2.9.5',
'pyyaml~=6.0',
],
setup_requires=[
'pytest-runner',
],
tests_require=[
'pytest',
'pytest-postgresql==1.3.0',
],
entry_points={
'console_scripts': [
'pgantomizer_dump=pgantomizer.dump:main',
'pgantomizer=pgantomizer.anonymize:main'
]
}
)