2023-03-25 06:39:54 +00:00
|
|
|
[build-system]
|
2023-06-27 21:37:24 +00:00
|
|
|
requires = ["maturin>=0.14,<2"]
|
2023-03-25 06:39:54 +00:00
|
|
|
build-backend = "maturin"
|
|
|
|
|
|
|
|
[project]
|
|
|
|
name = "jellyfish"
|
|
|
|
requires-python = ">=3.7"
|
|
|
|
classifiers = [
|
|
|
|
"Programming Language :: Rust",
|
|
|
|
"Programming Language :: Python :: Implementation :: CPython",
|
|
|
|
"Programming Language :: Python :: Implementation :: PyPy",
|
2023-03-27 03:09:38 +00:00
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Operating System :: OS Independent",
|
2023-06-21 16:47:07 +00:00
|
|
|
"Development Status :: 5 - Production/Stable",
|
2023-03-27 03:09:38 +00:00
|
|
|
"Intended Audience :: Developers",
|
2023-03-25 06:39:54 +00:00
|
|
|
]
|
|
|
|
|
2023-03-27 03:09:38 +00:00
|
|
|
[project.urls]
|
|
|
|
homepage = "https://jamesturk.github.io/jellyfish/"
|
|
|
|
documentation = "https://jamesturk.github.io/jellyfish/"
|
|
|
|
repository = "https://github.com/jamesturk/jellyfish/"
|
|
|
|
|
2023-03-25 06:39:54 +00:00
|
|
|
|
|
|
|
[tool.maturin]
|
2023-03-27 00:32:12 +00:00
|
|
|
features = ["pyo3/extension-module", "python"]
|
2023-03-25 06:39:54 +00:00
|
|
|
python-source = "python"
|
2023-04-10 22:19:05 +00:00
|
|
|
module-name = "jellyfish._rustyfish"
|