Skip to content

Commit 9a05fcb

Browse files
committed
Clean up pyproject.toml
1 parent b81d332 commit 9a05fcb

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

pyproject.toml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -25,23 +25,13 @@
2525
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2626

2727
[build-system]
28-
requires = ["setuptools>=64.0.0", "Cython", "numpy"]
2928
build-backend = "setuptools.build_meta"
29+
requires = ["setuptools>=64.0.0", "Cython", "numpy"]
3030

3131
[project]
32-
name = "mkl_random"
33-
dynamic = ["version"]
34-
description = "NumPy-based Python interface to Intel (R) MKL Random Number Generation functionality"
35-
readme = { file = "README.md", content-type = "text/markdown" }
36-
requires-python = ">=3.9,<3.13"
37-
license = { text = "BSD" }
3832
authors = [
39-
{ name = "Intel Corporation", email = "[email protected]" }
33+
{name = "Intel Corporation", email = "[email protected]"}
4034
]
41-
keywords=["MKL", "VSL", "true randomness", "pseudorandomness",
42-
"Philox", "MT-19937", "SFMT-19937", "MT-2203", "ARS-5",
43-
"R-250", "MCG-31",]
44-
4535
classifiers = [
4636
"Development Status :: 5 - Production/Stable",
4737
"Intended Audience :: Science/Research",
@@ -59,20 +49,30 @@ classifiers = [
5949
"Topic :: Scientific/Engineering",
6050
"Operating System :: Microsoft :: Windows",
6151
"Operating System :: POSIX",
62-
"Operating System :: Unix",
52+
"Operating System :: Unix"
6353
]
6454
dependencies = ["numpy >=1.26.4", "mkl"]
55+
description = "NumPy-based Python interface to Intel (R) MKL Random Number Generation functionality"
56+
dynamic = ["version"]
57+
keywords=["MKL", "VSL", "true randomness", "pseudorandomness",
58+
"Philox", "MT-19937", "SFMT-19937", "MT-2203", "ARS-5",
59+
"R-250", "MCG-31"]
60+
license = {text = "BSD"}
61+
name = "mkl_random"
62+
readme = {file = "README.md", content-type = "text/markdown"}
63+
requires-python = ">=3.9,<3.13"
64+
6565

6666
[project.optional-dependencies]
6767
test = ["pytest"]
6868

6969
[project.urls]
70-
Homepage = "http://github.com/IntelPython/mkl_random"
7170
Download = "http://github.com/IntelPython/mkl_random"
71+
Homepage = "http://github.com/IntelPython/mkl_random"
7272

7373
[tool.setuptools]
74-
packages = ["mkl_random"]
7574
include-package-data = true
75+
packages = ["mkl_random"]
7676

7777
[tool.setuptools.package-data]
7878
"mkl_random" = ["tests/*.py"]

0 commit comments

Comments
 (0)