pyo3/Cargo.toml

30 lines
690 B
TOML
Raw Normal View History

2015-01-05 16:05:53 +00:00
[package]
name = "cpython"
2015-01-05 16:05:53 +00:00
version = "0.0.1"
description = "Bindings to Python 2.7"
2015-01-05 16:05:53 +00:00
authors = ["Daniel Grunwald <daniel@danielgrunwald.de>"]
2015-04-19 05:50:50 +00:00
readme = "README.md"
keywords = [
"python",
"cpython",
"libpython27",
]
homepage = "https://github.com/dgrunwald/rust-cpython"
repository = "https://github.com/dgrunwald/rust-cpython.git"
documentation = "http://dgrunwald.github.io/rust-cpython/doc/cpython/"
license = "MIT"
exclude = [
".gitignore",
".travis.yml",
]
build = "build.rs"
2015-01-05 16:05:53 +00:00
2015-03-08 14:29:44 +00:00
[dependencies]
2015-03-09 13:31:20 +00:00
libc="*"
num="*"
# TODO: crates.io version doesn't have necessary conditional cfg flags yet
[dependencies.python27-sys]
git = "https://github.com/dgrunwald/rust-cpython.git"