-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
57 lines (48 loc) · 1.44 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
[build-system]
requires = ["setuptools", "setuptools-scm", "mypy", "black", "flake8", "pyproject-flake8"]
build-backend = "setuptools.build_meta"
[project]
name = "parfun"
description = "Lightweight parallelisation library for Python"
requires-python = ">=3.8"
readme = { file = "README.md", content-type = "text/markdown" }
license = { text = "Apache 2.0" }
authors = [{ name = "Citi", email = "[email protected]" }]
dynamic = ["dependencies", "version"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: System :: Distributed Computing",
]
[project.urls]
Home = "https://github.com/Citi/parfun"
Issues = "https://github.com/Citi/parfun/issues"
[project.optional-dependencies]
pandas = ["pandas"]
dask = ["dask", "distributed"]
scaler = ["scaler"]
[tool.setuptools]
packages = ["parfun"]
include-package-data = true
[tool.setuptools.dynamic]
dependencies = { file = "requirements.txt" }
version = { attr = "parfun.about.__version__" }
[tool.mypy]
no_strict_optional = true
check_untyped_defs = true
ignore_missing_imports = true
exclude = [
"^docs.*$",
]
[tool.black]
line-length = 120
skip-magic-trailing-comma = true
[tool.flake8]
max-line-length = 120
extend-ignore = "E203"
exclude = "venv312"
[metadata]
long_description = { file = "README.md" }
long_description_content_type = "text/markdown"