forked from sunchang0124/dp_cgans
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
201 lines (172 loc) · 4.62 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
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
requires-python = ">=3.8"
name = "dp-cgans"
description = "A library to generate synthetic tabular or RDF data using Conditional Generative Adversary Networks (GANs) combined with Differential Privacy techniques."
readme = "README.md"
license = { file = "LICENSE.txt" }
authors = [
{ name = "Sun Chang", email = "[email protected]" },
]
maintainers = [
{ name = "Sun Chang", email = "[email protected]" },
{ name = "Vincent Emonet", email = "[email protected]" },
]
keywords = [ "CGAN", "synthetic data", "DP", "Differential Privacy", "GAN" ]
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dynamic = ["version"]
dependencies = [
"copulas",
"numpy",
"pandas",
"torch",
"scipy",
"rdt",
"scikit-learn",
"graphviz",
"pyreadstat",
"sdv >=1.5.0",
"typer",
"typed-ast",
"wandb",
]
[project.scripts]
dp-cgans = "dp_cgans.__main__:cli"
[project.optional-dependencies]
test = [
"pytest >=7.4.0",
"pytest-cov >=3.0.0",
"ruff",
"black",
"mypy >=1.4.1",
"pip-tools",
"types-requests",
"types-PyYAML",
]
[project.urls]
Homepage = "https://github.com/sunchang0124/dp_cgans"
Documentation = "https://github.com/sunchang0124/dp_cgans"
History = "https://github.com/sunchang0124/dp_cgans/releases"
Tracker = "https://github.com/sunchang0124/dp_cgans/issues"
Source = "https://github.com/sunchang0124/dp_cgans"
# ENVIRONMENTS AND SCRIPTS
[tool.hatch.envs.default]
features = [
"test",
]
[tool.hatch.envs.default.scripts]
dev = "python tests/dev.py {args}"
fmt = [
# "pre-commit run --all --all-files",
"black src",
"ruff src --fix",
"mypy",
]
test = [
# "fmt",
"pytest {args}",
]
cov = [
# "fmt",
"pytest --cov-report html {args}",
]
cov-check = [
"python -c 'import webbrowser; webbrowser.open(\"http://0.0.0.0:3000\")'",
"python -m http.server 3000 --directory ./htmlcov",
]
requirements = "pip-compile -o requirements.txt pyproject.toml"
[[tool.hatch.envs.all.matrix]]
python = ["3.7", "3.8", "3.9", "3.10", "3.11"]
## TOOLS config
[tool.hatch.version]
path = "src/dp_cgans/__init__.py"
# If you need to import packages from git URLs:
# [tool.hatch.metadata]
# allow-direct-references = true
[tool.coverage.run]
source = ["src"]
branch = true
[tool.coverage.report]
omit = ["tests/*"]
[tool.mypy]
files = ["src/"]
strict = true
implicit_reexport = true
follow_imports = "normal"
ignore_missing_imports = true
pretty = true
show_column_numbers = true
warn_no_return = true
warn_unused_ignores = true
warn_redundant_casts = true
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_any_generics = true
[tool.pytest.ini_options]
addopts = [
"-vvv", # Verbose level 3
"--durations=10", # Show 10 slowest tests durations
"--cov=src",
"--color=yes",
"--cov-report=term-missing",
# "--cov-fail-under=85",
]
filterwarnings = [
"ignore::DeprecationWarning:httpx.*:",
]
[tool.black]
color = true
line-length = 120
target-version = ['py38']
skip-string-normalization = false
# https://github.com/charliermarsh/ruff#supported-rules
[tool.ruff]
src = ["src", "tests"]
target-version = "py38"
line-length = 120
select = [
"I", # isort
"N", # pep8-naming
"S", # bandit
"A", # flake8-builtins
"YTT", # flake8-2020
"B", # flake8-bugbear
"C", # flake8-comprehensions
"ICN", # flake8-import-conventions
"SIM", # flake8-simplify
"TID", # flake8-tidy-imports
"Q", # flake8-quotes
# "FBT", # flake8-boolean-trap
"F", # pyflakes
"UP", # pyupgrade
"E", # pycodestyle errors
"W", # pycodestyle warnings
"PLC", # pylint convention
"PLE", # pylint error
# "PLR", # pylint refactor Magic value used in comparison, consider replacing 400 with a constant variable
"PLW", # pylint warning
"RUF", # ruff specific
"T",
]
ignore = [
"E501", # line too long
"C901", # too complex
"T201", # do not use print
"B008", # do not perform function calls in argument defaults
]
[tool.ruff.per-file-ignores]
"__init__.py" = ["I", "F401"] # module imported but unused
# Tests can use magic values, assertions, and relative imports
"tests/**/*" = ["PLR2004", "S101", "S105", "TID252"]
[tool.ruff.mccabe]
max-complexity = 10