Skip to content

Commit

Permalink
move project classifiers from Cargo.toml to pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
pacrob committed Jan 25, 2024
1 parent 29233fd commit 764d257
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 14 deletions.
13 changes: 0 additions & 13 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,6 @@ repository = "https://github.com/cburgdorf/rusty-rlp"
readme = "README.md"
license = "MIT"

[package.metadata.maturin]
classifier = [
"Intended Audience :: Developers",
"Programming Language :: Rust",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]

[lib]
name = "rusty_rlp"
crate-type = ["cdylib"]
Expand Down
16 changes: 15 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
[build-system]
requires = ["maturin"]
build-backend = "maturin"
build-backend = "maturin"

[project]
name = "rusty-rlp"
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Rust",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]

0 comments on commit 764d257

Please sign in to comment.