Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move python metadata to pyproject.toml #144

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 0 additions & 8 deletions synapse_auto_compressor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,6 @@ edition = "2018"
name = "synapse_auto_compressor"
required-features = ["clap"]

[package.metadata.maturin]
requires-python = ">=3.7"
project-url = {Source = "https://github.com/matrix-org/rust-synapse-compress-state"}
classifier = [
"Development Status :: 4 - Beta",
"Programming Language :: Rust",
]

[dependencies]
openssl = { version = "0.10.60", features = ["vendored"] }
postgres = "0.19.7"
Expand Down
13 changes: 12 additions & 1 deletion synapse_auto_compressor/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,19 @@
[project]
name = "synapse_auto_compressor"
requires-python = ">=3.7"
classifier = [
"Development Status :: 4 - Beta",
"Programming Language :: Rust",
]

[project.urls]
Source = "https://github.com/matrix-org/rust-synapse-compress-state"

[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"

[tool.maturin]
profile = "release"
features = ["pyo3"]
no-default-features = true
no-default-features = true
Loading