-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
35 lines (30 loc) · 986 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
[build-system]
requires = ["setuptools>=61.0", "setuptools-git-versioning", "versioneer[toml]==0.29"]
build-backend = "setuptools.build_meta"
[project]
name = "generatorpipeline"
description = "Parallelize your data-processing pipelines with just a decorator."
requires-python = ">=3.6"
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{name = "Stephan Kuschel", email = "stephan.kuschel@gmail.com"},
]
dependencies = ["dill"]
dynamic = ["version"]
[tool.setuptools-git-versioning]
enabled = true
[project.urls]
"Homepage" = "https://github.com/skuschel/generatorpipeline"
"Bug Tracker" = "https://github.com/skuschel/generatorpipeline/issues"
[project.optional-dependencies]
network = ["pyzmq"]
accumulators = ["numpy"]
full = ["generatorpipeline[network,accumulators]"]
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "generatorpipeline/_version.py"
versionfile_build = "generatorpipeline/_version.py"
tag_prefix="v"
parentdir_prefix = ""