-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
90 lines (79 loc) · 2 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
[build-system]
requires = [
"setuptools>=61",
"wheel",
"setuptools_scm>=6.2"
]
build-backend = "setuptools.build_meta"
[project]
name = "synthesized-datasets"
description = "Publically available datasets for benchmarking and evaluation."
readme = "README.md"
requires-python = ">= 3.7"
authors = [
{ name = "Synthesized Ltd.", email = "sdk-team@synthesized.io" },
]
keywords = [
"datasets",
"data",
"evaluation",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering",
]
dynamic = ["version"]
dependencies = [
"pandas >= 1.2",
"pyspark>=0.7.0",
"fastparquet"
]
[project.optional-dependencies]
dev = [
"pre-commit",
"black",
"mypy",
"pylint",
]
[project.license]
file = "LICENSE.md"
[project.urls]
homepage = "https://synthesized.io"
documentation = "https://docs.synthesized.io/"
repository = "https://github.com/synthesized-io/datasets"
[tool]
[tool.setuptools]
platforms = [
"MacOS",
"Windows",
"Linux",
]
[tool.setuptools.package-dir]
synthesized_datasets = "src/synthesized_datasets"
[tool.setuptools.package-data]
synthesized_datasets = [
"datasets.yaml"
]
[tool.setuptools.dynamic]
version = {attr = "synthesized_datasets.version.version"}
[tool.setuptools_scm]
write_to = "src/synthesized_datasets/version.py"
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
line_length = 100