-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
47 lines (41 loc) · 1.23 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
[build-system]
requires = ["setuptools", "wheel", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
local_scheme = "no-local-version"
[tool.setuptools.packages]
find = {namespaces = false}
[project]
name = "zprocess"
description = "A set of utilities for multiprocessing using zeromq"
authors = [
{name = "Christopher Billington", email = "[email protected]"},
]
keywords = ["multiprocessing", "IPC", "zeromq"]
license = {file = 'LICENSE.txt'}
classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3 :: Only",
]
requires-python = ">=3.8"
dependencies = [
"setuptools_scm",
"pyzmq",
"pywin32; sys_platform == 'win32'",
"windows-curses; sys_platform == 'win32'",
]
dynamic = ["version"]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
Homepage = "https://github.com/chrisjbillington/zprocess"
Documentation = "https://github.com/chrisjbillington/zprocess"
Repository = "https://github.com/chrisjbillington/zprocess"
Downloads = "https://pypi.org/project/zprocess/"
Tracker = "https://github.com/chrisjbillington/zprocess/issues"
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
]