-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (57 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
62 lines (57 loc) · 1.23 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
53
54
55
56
57
58
59
60
61
62
[project]
name = "cl-sdk"
version = "0.29.0"
authors = [
{ name="Cortical Labs Pte Ltd", email="info@corticallabs.com" },
]
description = "Simulator for the Cortical Labs cl API"
readme = "README.md"
requires-python = ">=3.12.0"
classifiers = [
"License :: Other/Proprietary License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = { text = "CC BY-NC 4.0" }
license-files = ["LICEN[CS]E*"]
dependencies = [
"numpy",
"msgpack",
"msgpack_numpy",
"tables",
"dotenv",
"matplotlib",
"pydantic",
"scipy",
"networkx",
"python-louvain",
"pandas",
"websockets",
"ipykernel"
]
[project.optional-dependencies]
test = [
"pytest",
"pytest_mock",
"inline_snapshot[black]",
"pdoc"
]
[project.urls]
Homepage = "https://github.com/Cortical-Labs/cl-sdk"
Documentation = "https://docs.corticallabs.com"
Source = "https://github.com/Cortical-Labs/cl-sdk"
[build-system]
requires = ["hatchling >= 1.26"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/cl"]
[tool.hatch.build.targets.sdist]
include = [
"src",
"tests",
"build.sh",
"test-dist.sh",
"pyproject.toml",
"README.md",
"LICENSE",
]