-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
34 lines (32 loc) · 1.03 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
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "IdealFlowNetwork"
version = "1.15.3"
authors = [
{ name="Kardi Teknomo", email="[email protected]" },
]
description = "A Python package for Ideal Flow Network computations"
readme = "README.md"
license = {file = "LICENSE"}
dependencies = [
'scipy>=1.7',
'networkx>=3.1',
'numpy>=1.24.4',
'matplotlib>=3.7.5',
]
requires-python = ">=3.10"
classifiers = [
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering',
]
keywords = ["ideal flow network", "graph theory","network analysis"]
[project.urls]
Homepage = "https://github.com/teknomo/IdealFlowNetwork"
Issues = "https://github.com/teknomo/IdealFlowNetwork/issues"
Documentation = 'https://people.revoledu.com/kardi/research/trajectory/ifn/doc/html'