-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
60 lines (56 loc) · 1.6 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
51
52
53
54
55
56
57
58
59
60
[tool]
[tool.poetry]
authors = ["Ben Pedigo <[email protected]>"]
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
]
description = "Lightweight representations of networks using Pandas DataFrames."
homepage = "https://github.com/bdpedigo/networkframe"
license = "MIT"
name = "networkframe"
packages = [
{ include = "networkframe" },
{ include = "tests", format = "sdist" },
]
readme = "README.md"
version = "0.5.1"
[tool.poetry.dependencies]
beartype = "^0.16.4"
networkx = ">=2.8.8"
pandas = "^2.1.4"
python = ">=3.11,<3.13"
scipy = "^1.11.4"
setuptools = "^69.0.3"
types-setuptools = "^69.0.0.20240115"
[tool.poetry.group.dev.dependencies]
commitizen = "^3.13.0"
mike = "^2.0.0"
mkdocs = "^1.5.3"
mkdocs-autorefs = "^0.5.0"
mkdocs-git-authors-plugin = "^0.7.2"
mkdocs-git-committers-plugin-2 = "^2.2.2"
mkdocs-git-revision-date-localized-plugin = "^1.2.2"
mkdocs-include-markdown-plugin = "^6.0.4"
mkdocs-jupyter = "^0.24.6"
mkdocs-material = "^9.5.2"
mkdocs-material-extensions = "^1.3.1"
mkdocs-section-index = "^0.3.8"
mkdocstrings = { extras = ["crystal", "python"], version = "^0.24.0" }
mknotebooks = "^0.8.0"
mypy = "^1.7.1"
pymdown-extensions = "^10.5"
pytest = "^7.4.3"
ruff = "^0.1.7"
tox = "^4.11.4"
tox-current-env = "^0.0.11"
twine = "^4.0.2"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]
[tool.ruff]
ignore-init-module-imports = true