-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (72 loc) · 1.78 KB
/
pyproject.toml
File metadata and controls
82 lines (72 loc) · 1.78 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[build-system]
requires = ["setuptools >= 80.9.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["gridfm_datakit*"]
[project]
name = "gridfm-datakit"
description = "Data Generation Kit"
readme = "README.md"
license = "Apache-2.0"
version = "1.0.4"
requires-python = ">=3.10,<3.13"
dependencies = [
"ipykernel",
"matplotlib",
"matpowercaseframes",
"nbformat",
"numba",
"numpy",
"pandas",
"pathlib",
"plotly",
"pyaml",
"requests",
"urllib3>= 2.6.0", # fix security issue
"ipywidgets",
"ipyfilechooser",
"scipy",
"juliacall",
"networkx",
"tqdm",
"pyarrow",
# Enforce Python <= 3.11 on Windows
"gridfm-datakit-winblock ; sys_platform == 'win32' and python_version >= '3.12'"
]
authors = [
{name = "Alban Puech", email = "alban.puech2@ibm.com"},
{name = "Matteo Mazzonelli", email = "matteo.mazzonelli1@ibm.com"},
{name = "Tamara Govindasamy", email= "tamara.govindasamy@ibm.com"},
{name = "Mangaliso Mngomezulu", email= "mngomezulum@ibm.com"},
{name = "Etienne Vos", email= "etienne.vos@ibm.com"},
{name = "Jonas Weiss", email= "jwe@zurich.ibm.com"},
]
maintainers = [
{name = "Alban Puech", email = "apuech@seas.harvard.edu"},
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering"
]
[project.scripts]
gridfm_datakit = "gridfm_datakit.cli:main"
[project.optional-dependencies]
dev = [
"mkdocs",
"mkdocs-material",
"mkdocstrings[python]",
"pre-commit",
"bandit",
"build"
]
test = [
"pytest",
"pytest-cov",
"pyinstrument",
"pytest-xdist"
]