Skip to content

Commit 06c4128

Browse files
committed
upated metadata
1 parent d8e28ae commit 06c4128

File tree

2 files changed

+27
-3
lines changed

2 files changed

+27
-3
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@ opt-level = 3
2525
lto = "fat"
2626
codegen-units = 1
2727

28-
[build]
29-
rustflags = ["-C", "target-cpu=native"]
28+
# [build]
29+
# rustflags = ["-C", "target-cpu=native"]

pyproject.toml

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,36 @@ build-backend = "maturin"
44

55
[project]
66
name = "arrayredox"
7-
requires-python = ">=3.8"
7+
description = "Array utilities for StaticFrame"
8+
requires-python = ">=3.10"
9+
readme = { file = "README.md", content-type = "text/x-md" }
10+
license = { text = "MIT" }
11+
authors = [
12+
{ name = "Christopher Ariza" },
13+
]
14+
urls = {
15+
Homepage = "https://github.com/static-frame/arrayredox"
16+
}
817
classifiers = [
918
"Programming Language :: Rust",
1019
"Programming Language :: Python :: Implementation :: CPython",
1120
"Programming Language :: Python :: Implementation :: PyPy",
21+
'Development Status :: 5 - Production/Stable',
22+
'Intended Audience :: Developers',
23+
'Topic :: Software Development',
24+
'License :: OSI Approved :: MIT License',
25+
'Operating System :: MacOS :: MacOS X',
26+
'Operating System :: Microsoft :: Windows',
27+
'Operating System :: POSIX',
28+
'Programming Language :: Python :: 3.10',
29+
'Programming Language :: Python :: 3.11',
30+
'Programming Language :: Python :: 3.12',
31+
'Programming Language :: Python :: 3.13',
1232
]
1333
dynamic = ["version"]
34+
35+
[project.optional-dependencies]
36+
dev = ["pytest", "numpy"]
37+
1438
[tool.maturin]
1539
features = ["pyo3/extension-module"]

0 commit comments

Comments
 (0)