This repository has been archived by the owner on Sep 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
104 lines (91 loc) · 2.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
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
[project]
name = "dialect-map-io"
description = "Package containing the I/O functionality for the Dialect map jobs"
requires-python = ">=3.11"
dynamic = ["version", "readme"]
license = { file = "LICENSE" }
authors = [{ name = "NYU DS3 Team", email = "[email protected]" }]
maintainers = [{ name = "Sinclert Perez", email = "[email protected]" }]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"pdfminer.six==20201018",
"requests==2.31.0",
]
[project.optional-dependencies]
gcp = [
"google-auth==2.2.1",
"google-cloud-pubsub==2.10.0",
]
lint = [
"black==24.4.2",
"isort==5.13.2",
"mypy==1.10.0",
"types-requests~=2.31.0",
]
test = [
"pytest==7.2.0",
"pytest-cov==4.0.0",
]
all = [
"dialect-map-io[gcp]",
"dialect-map-io[lint]",
"dialect-map-io[test]",
"pre-commit==3.7.0",
]
[project.urls]
Homepage = "https://github.com/dialect-map/dialect-map"
Source = "https://github.com/dialect-map/dialect-map-io"
Changelog = "https://github.com/dialect-map/dialect-map-io/blob/main/CHANGELOG.md"
# Section with setuptools configuration options
[tool.setuptools.dynamic]
readme = { file = "README.md" }
version = { file = "VERSION" }
[tool.setuptools.packages.find]
where = ["src"]
# Section with black configuration options
[tool.black]
line-length = 100
target-version = ['py311', 'py312']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
)
'''
# Section with isort configuration options
[tool.isort]
force_single_line = true
ignore_whitespace = true
only_sections = true
profile = "black"
# Section with mypy configuration options
[tool.mypy]
cache_dir = "/dev/null"
allow_redefinition = true
explicit_package_bases = true
ignore_missing_imports = true
# Section with pytest configuration options
[tool.pytest.ini_options]
markers = [
"gcp: Google Cloud SDK dependent tests",
]