Skip to content

Commit ba4ff52

Browse files
update readme, update packaging
1 parent 68a6972 commit ba4ff52

File tree

3 files changed

+18
-304
lines changed

3 files changed

+18
-304
lines changed

.gitchangelog.rc

Lines changed: 0 additions & 296 deletions
This file was deleted.

README.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88

99
[![sphinx](https://github.com/engineerjoe440/ElectricPy/actions/workflows/sphinx-build.yml/badge.svg?branch=master)](https://github.com/engineerjoe440/ElectricPy/actions/workflows/sphinx-build.yml)
1010
[![Documentation Status](https://readthedocs.org/projects/electricpy/badge/?version=latest)](https://electricpy.readthedocs.io/en/latest/?badge=latest)
11-
![Tox Import Test](https://github.com/engineerjoe440/ElectricPy/workflows/Tox%20Tests/badge.svg)
1211

1312
[![pytest](https://github.com/engineerjoe440/ElectricPy/actions/workflows/pytest.yml/badge.svg?branch=master)](https://github.com/engineerjoe440/ElectricPy/actions/workflows/pytest.yml)
1413
[![pydocstyle](https://github.com/engineerjoe440/ElectricPy/actions/workflows/pydocstyle.yml/badge.svg?branch=master)](https://github.com/engineerjoe440/ElectricPy/actions/workflows/pydocstyle.yml)
@@ -32,12 +31,6 @@ development, education, and exploration in the realm of electrical engineering.
3231

3332
Check out our full documentation: https://electricpy.readthedocs.io/en/latest/
3433

35-
<a title="Fabián Alexis, CC BY-SA 3.0 &lt;https://creativecommons.org/licenses/by-sa/3.0&gt;, via Wikimedia Commons" href="https://commons.wikimedia.org/wiki/File:Antu_dialog-warning.svg"><img width="25px" alt="Antu dialog-warning" src="https://upload.wikimedia.org/wikipedia/commons/thumb/f/f7/Antu_dialog-warning.svg/512px-Antu_dialog-warning.svg.png"></a> **Documentation has recently been updated to use [ReadTheDocs](https://readthedocs.org/)**
36-
37-
GitHub Pages are still active, and will continue to be for the forseeable
38-
future, but they're intended for developmental updates rather than primary
39-
documentation.
40-
4134
## Features
4235

4336
* Extensive set of common functions and formulas for electrical engineering and

pyproject.toml

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ classifiers = [
3030
dynamic = ["version"]
3131

3232
dependencies = [
33-
"NumPy",
33+
"numpy >= 2.0.0",
3434
"matplotlib",
3535
"SciPy",
3636
"SymPy",
@@ -41,6 +41,23 @@ dependencies = [
4141
numerical = ["numdifftools"]
4242
fault = ["arcflash"]
4343
full = ["numdifftools", "arcflash"]
44+
test = [
45+
"pytest >=2.7.3",
46+
"xdoctest >= 1.1.3",
47+
"pytest-pydocstyle >= 2.3.2",
48+
"pygments >= 2.18.0",
49+
]
50+
51+
[tool.pytest.ini_options]
52+
testpaths = [
53+
"test",
54+
"electricpy",
55+
]
56+
addopts = "--pydocstyle --xdoctest"
57+
58+
[tool.pydocstyle]
59+
convention = "numpy"
60+
match-dir = "electricpy/"
4461

4562
[project.urls]
4663
Home = "https://electricpy.readthedocs.io/en/latest/index.html"

0 commit comments

Comments
 (0)