20 lines
462 B
TOML
20 lines
462 B
TOML
[build-system]
|
|
requires = ["maturin>=1,<2"]
|
|
build-backend = "maturin"
|
|
|
|
[project]
|
|
name = "string_sum"
|
|
version = "0.1.0"
|
|
classifiers = [
|
|
"License :: OSI Approved :: MIT License",
|
|
"Development Status :: 3 - Alpha",
|
|
"Intended Audience :: Developers",
|
|
"Programming Language :: Python",
|
|
"Programming Language :: Rust",
|
|
"Operating System :: POSIX",
|
|
"Operating System :: MacOS :: MacOS X",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = ["pytest"]
|