forked from rheinwerk-verlag/pganonymize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (50 loc) · 1.24 KB
/
pyproject.toml
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
[tool.poetry]
name = "pganonymize"
version = "0.8.0"
description = "Commandline tool to anonymize PostgreSQL databases"
authors = [
"Henning Kage <[email protected]>"
]
license = "MIT"
readme = "README.rst"
homepage = "https://github.com/rheinwerk-verlag/pganonymize/"
repository = "https://github.com/rheinwerk-verlag/pganonymize.git"
[tool.poetry.dependencies]
python = "~2.7 || ^3.6"
Faker = [
{ version = "^3.0.0", python = "~2.7" },
{ version = "^9.9.0", python = "^3.6" }
]
psycopg2-binary = [
{ version = "~2.8.4", python = "~2.7" },
{ version = "^2.9.2", python = "^3.6" }
]
pyyaml = [
{ version = "^5.4.1", python = "~2.7" },
{ version = "^6.0", python = "^3.6" }
]
pygments = [
{ version = "^2.7.4", python = "^3.6"}
]
parmap = [
{ version = "1.5.2", python = "~2.7" },
{ version = "^1.5.2", python = "^3.6" }
]
tqdm = "^4.61.1"
pgcopy = "^1.5.0"
[tool.poetry.dev-dependencies]
flake8 = "^3.7.9"
mock = "^3.0.5"
pytest = "^4.1"
pytest-pep8 = "^1.0.6"
pytest-cov = "^2.8.1"
pytest-pythonpath = "^0.7.3"
ipdb = "^0.12.3"
isort = "^4.3.21"
wheel = "^0.33.6"
Sphinx = "<2.3.1"
recommonmark = "^0.6.0"
sphinx_rtd_theme = "^0.4.3"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"