-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (46 loc) · 1.31 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
[tool.poetry]
name = "dcp"
version = "3.0.0"
description = "A DCP SDK"
authors = [
"Distributive <info@distributive.network>",
"Will Pringle <will@distributive.network>",
]
license = "MIT"
repository = "https://github.com/Distributive-Network/bifrost2"
packages = [
{ include = "dcp" }
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: System :: Distributed Computing"
]
readme = "README.md"
homepage = "https://github.com/Distributive-Network/bifrost2/"
[tool.poetry.dependencies]
python = ">=3.8,<3.13"
cloudpickle = "2.2.1"
dill = "0.3.8"
pythonmonkey = ">=1.0.0"
numpy = [
{version = "<=1.24", python = "<3.9"},
{version = ">=1.25", python = ">=3.9"}
]
nest_asyncio = '^1.6.0'
[tool.poetry.build]
script = "post-install-hook.py"
generate-setup-file = false
[tool.poetry.dev-dependencies]
pytest = "^7.3.1"
[build-system]
requires = ["poetry>=1.1.0"]
build-backend = "poetry.core.masonry.api"