-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
36 lines (32 loc) · 988 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
36
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = 'setuptools.build_meta'
[tool.setuptools.packages.find]
where = ["."]
include = ["nornir_pools"]
[project]
name = "nornir_pools"
version = "1.5.0"
authors = [
{ name="James Anderson", email="[email protected]" },
]
description = "A helper library that wraps python threads, multiprocessing, a process pool for shell commands, and parallel python with the same interface"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.7"
dependencies = [
"six",
"numpy",
"matplotlib",
"nornir_shared @ git+https://github.com/jamesra/nornir-shared#egg=nornir_shared-1.4.1",
]
classifiers = [
"Programming Language :: Python :: 3.7",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
]
[project.optional-dependencies]
test = ["nose"]
[project.urls]
Homepage = "https://github.com/jamesra/nornir-pools"
Issues = "https://github.com/jamesra/nornir-pools/issues"