-
Notifications
You must be signed in to change notification settings - Fork 65
/
pyproject.toml
45 lines (40 loc) · 1.3 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
[build-system]
requires = [
"numpy",
"setuptools",
"scipy",
"pytest-runner",
"cython"
]
build-backend = "setuptools.build_meta"
[project]
name = "scikit-network"
version = "0.33.1"
dependencies = ['numpy>=1.22.4', 'scipy>=1.7.3']
authors = [{name = "Scikit-network team"}]
maintainers = [{name = "Thomas Bonald", email = "[email protected]"}]
description = "Graph algorithms"
readme = "README.rst"
license = {text = "BSD License"}
keywords = ["sknetwork"]
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Cython',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12'
]
requires-python = ">= 3.9"
[project.optional-dependencies]
test = ["pytest", "note", "pluggy>=0.7.1"]
[project.urls]
Repository = "https://github.com/sknetwork-team/scikit-network"
Documentation = "https://scikit-network.readthedocs.io/"
Changelog = "https://github.com/sknetwork-team/scikit-network/blob/master/HISTORY.rst"