-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpyproject.toml
More file actions
87 lines (81 loc) · 2.26 KB
/
Copy pathpyproject.toml
File metadata and controls
87 lines (81 loc) · 2.26 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
83
84
85
86
87
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "electricpy"
description = "Electrical Engineering Functions in Python"
readme = "README.md"
requires-python = ">=3.7"
authors = [
{name = "Joe Stanley", email = "engineerjoe440@yahoo.com"},
{name = "Lakshmikanth Ayyadevara"},
{name = "Khan Asfi Reza", email = "khanasfireza10@gmail.com"},
{name = "Arthur Lorencini Bergamaschi", email = "arthur.lorencini@gmail.com"},
{name = "Miguel Zabala"},
{name = "Soham Ratnaparkhi", email = "soham.ratnaparkhi@gmail.com"},
{name = "I Wayan Kurniawan"},
{name = "Ankush", email = "ankush.opensource@gmail.com"},
{name = "Tanvir Riyad"}
]
maintainers = [
{name = "Joe Stanley", email = "engineerjoe440@yahoo.com"}
]
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research"
]
dynamic = ["version"]
dependencies = [
"numpy",
"matplotlib",
"scipy",
"sympy",
"numdifftools",
]
[project.optional-dependencies]
numerical = ["numdifftools"]
fault = ["arcflash"]
full = ["numdifftools", "arcflash"]
dev = [
"pytest >=2.7.3,<9",
"xdoctest >= 1.1.3",
"pytest-pydocstyle >= 2.3.2",
"pygments >= 2.18.0",
"wheel",
"sphinx",
"myst-parser[linkify]",
"sphinx-sitemap",
"sphinx-git",
"sphinx-immaterial",
"genbadge[coverage]",
"coverage",
"numpy",
"matplotlib",
"scipy",
"sympy",
"numdifftools",
"pylint",
"ruff",
]
[tool.pytest.ini_options]
testpaths = [
"test",
"electricpy",
]
addopts = "--pydocstyle --xdoctest"
[tool.pydocstyle]
convention = "numpy"
match-dir = "electricpy/"
[project.urls]
Home = "https://electricpy.readthedocs.io/en/latest/index.html"
Repository = "https://github.com/engineerjoe440/ElectricPy"
Issues = "https://github.com/engineerjoe440/ElectricPy/issues"
Documentation = "https://electricpy.readthedocs.io/en/latest/"