-
Notifications
You must be signed in to change notification settings - Fork 38
/
setup.py
39 lines (36 loc) · 1.21 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
import setuptools
import sys
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="pynonymizer",
description="An anonymization tool for production databases",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Topic :: Database",
"Intended Audience :: Developers",
],
author="Rowan Twell",
author_email="[email protected]",
url="https://github.com/rwnx/pynonymizer",
keywords="anonymization gdpr database mysql",
license="MIT",
packages=setuptools.find_packages(exclude=("tests", "tests.*")),
python_requires=">3.9.0",
install_requires=[
"pyyaml>=5",
"tqdm>=4",
"faker>=1",
"typer[all]>=0.9.0",
],
entry_points={"console_scripts": ["pynonymizer = pynonymizer.cli:cli"]},
setup_requires=["pytest-runner"],
tests_require=["pytest"],
extras_require={"mssql": ["pyodbc>=4.0.26"]},
)