Skip to content

Commit 31b43e0

Browse files
committed
fix project info
Signed-off-by: nstarman <nstarkman@protonmail.com>
1 parent 3b97b04 commit 31b43e0

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ The overloads apply to an array wrapping class. Let's define one:
2727
... x: np.ndarray
2828
... NP_FUNC_OVERLOADS: ClassVar[NumPyOverloader] = VEC_FUNCS
2929

30-
Now :mod:`numpy` functions can be overloaded and registered for ``Vector1D``.
30+
Now ``numpy`` functions can be overloaded and registered for ``Vector1D``.
3131

3232
>>> @VEC_FUNCS.implements(np.concatenate, Vector1D)
3333
... def concatenate(vec1ds: tuple[Vector1D, ...]) -> Vector1D:

pyproject.toml

+4-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[project]
22
name = "overload_numpy"
33
version = "0.0.1"
4-
description = "Stellar Stream Tracker"
4+
description = "Overload NumPy Functions"
55
readme = "README.rst"
66
requires-python = ">=3.8"
7-
license = {file = "licenses/LICENSE.rst"}
8-
keywords = ["stellar streams", "astronomy"]
7+
license = {file = "LICENSE"}
8+
keywords = ["numpy", "interoperability"]
99
authors = [
1010
{name = "Nathaniel Starkman", email = "n.starkman@mail.utoronto.ca"}
1111
]
@@ -14,11 +14,10 @@
1414
]
1515
classifiers = [
1616
"Intended Audience :: Science/Research",
17+
"Intended Audience :: Developers",
1718
"License :: OSI Approved :: BSD License",
1819
"Operating System :: OS Independent",
1920
"Programming Language :: Python :: 3",
20-
"Topic :: Scientific/Engineering :: Astronomy",
21-
"Topic :: Scientific/Engineering :: Physics",
2221
]
2322
dependencies = [
2423
"mypy",
@@ -56,7 +55,6 @@
5655
"mypy",
5756
"setuptools>=45",
5857
"setuptools_scm>=6.2",
59-
"oldest-supported-numpy",
6058
"wheel",
6159
]
6260

0 commit comments

Comments
 (0)