-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
74 lines (63 loc) · 2.09 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
[build-system]
requires = ["setuptools>=69.0"]
build-backend = "setuptools.build_meta"
[project]
name="httpfs-sync"
description="Install requirements and run code in virtual environments from the comfort of your own GIL"
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
]
keywords=["virtualenv", "dependencies"]
authors=[{ name = "Nathan Zimmerman", email = "[email protected]"}]
license= { text = "MIT" }
requires-python=">=3.8"
dependencies = ["fsspec"]
dynamic = ["version", "readme"]
[project.urls]
homepage = "https://github.com/moradology/httpfs-sync"
repository = "https://github.com/moradology/httpfs-sync.git"
[project.optional-dependencies]
dev = ["pytest>=8.0.0",
"pytest-cov>=4.1.0"]
lint = ["black>=23.9.1",
"isort>=5.13.0",
"flake8>=7.0.0",
"Flake8-pyproject>=1.2.3",
"mypy>=1.8.0",
"pre-commit>=3.4.0",
"pytest>=8.0.0",
"pytest-cov>=4.1.0",
"tox>=4.11.3"]
[tool.setuptools.dynamic]
version = { attr = "httpfs_sync.version.__version__" }
readme = {file = ["README.md"], content-type = "text/markdown"}
[tool.setuptools.package-data]
"httpfs_sync" = ["*.typed"]
[tool.setuptools.packages.find]
include = ["httpfs_sync*"]
exclude = ["tests*"]
[tool.pytest.ini_options]
addopts = "-sv --cov httpfs_sync --cov-report xml --cov-report term-missing --cov-fail-under 80"
[tool.black]
line-length = 100
target-version = ["py311"]
[tool.isort]
profile = "black"
known_first_party = "httpfs_sync"
known_third_party = []
default_section = "THIRDPARTY"
[tool.mypy]
ignore_missing_imports = true
exclude = ["tests", ".venv"]
[tool.flake8]
ignore = ["E501", "W503"]
select = ["C","E","F","W","B","B950"]
exclude = ["tests", ".venv", ".tox", ".git", ".mypy_cache"]
max-line-length = 100