forked from smc-lucky/dpa-data-cleaning
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
38 lines (32 loc) · 850 Bytes
/
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
[build-system]
requires = ["setuptools>=61", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "lam-data-cleaning"
dynamic = ["version"]
description = "Data cleaning"
authors = [
{name = "DP Technology"},
]
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
]
dependencies = [
'pydflow>=1.7.23',
'dpdata',
]
requires-python = ">=3.8"
readme = "README.md"
keywords = ["data cleaning"]
[project.urls]
repository = "https://github.com/zjgemi/lam-data-cleaning"
[project.scripts]
dpclean = "dpclean.entrypoints.main:main"
[tool.setuptools.packages.find]
include = ["dpclean*"]
[tool.setuptools_scm]
write_to = "dpclean/_version.py"
[tool.cibuildwheel]
test-command = ["dpclean -h",]