pyo3/Cargo.toml

41 lines
946 B
TOML

[package]
name = "pyo3"
version = "0.1.0"
description = "Bindings to Python"
authors = ["PyO3 Project and Contributors <https://github.com/PyO3"]
readme = "README.md"
keywords = [
"python",
"cpython",
]
homepage = "https://github.com/pyo3/pyo3"
repository = "https://github.com/pyo3/pyo3.git"
documentation = "http://pyo3.github.io/pyo3/doc/pyo3/"
categories = ["api-bindings", "development-tools::ffi"]
license = "MIT/APACHE-2"
exclude = [
".gitignore",
".travis.yml",
"appveyor.yml",
".cargo/config",
]
build = "build.rs"
[dependencies]
libc = "0.2"
num-traits = "0.1"
[build-dependencies]
regex = "0.1"
[features]
default = []
# Enable additional features that require nightly rust
nightly = []
# Use this feature when building an extension module.
# It tells the linker to keep the python symbols unresolved,
# so that the module can also be used with statically linked python interpreters.
extension-module = []