-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (48 loc) · 1.56 KB
/
pyproject.toml
File metadata and controls
53 lines (48 loc) · 1.56 KB
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
[tool.poetry]
name = "dcp"
version = "3.4.3"
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",
"Programming Language :: Python :: 3.13",
"Topic :: System :: Distributed Computing"
]
readme = "README.md"
homepage = "https://github.com/Distributive-Network/bifrost2/"
[tool.poetry.dependencies]
python = "^3.8"
cloudpickle = "*"
dill = "^0.3.7"
pythonmonkey = ">=1.1.0"
numpy = [
{version = "^2.1.0", python = ">=3.13"}, # NumPy 2.1.0 adds support for Python 3.13
{version = ">=1.25.0,<2.1.0", python = ">=3.9,<3.13"}, # NumPy 2.1.0 drops support for Python 3.9
{version = ">=1.24.3,<1.25.0", python = ">=3.8,<3.9"}, # NumPy 1.25.0 drops support for Python 3.8
]
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"