-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (30 loc) · 946 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "networkg"
version = "0.1.4"
readme = "README.rst"
license = "MIT"
homepage = "https://github.com/gustavgransbo/networkg/"
repository = "https://github.com/gustavgransbo/networkg/"
authors = ["Gustav Gränsbo <gustav.gransbo@gmail.com>"]
edition = "2018"
[lib]
name = "networkg"
crate-type = ["rlib", "cdylib"]
[dependencies]
csv = "1.1"
pyo3 = {version = "0.12.4", features = ["extension-module"]}
[features]
test = []
[package.metadata.maturin]
requires-python = ">=3.7"
requires-dist = ["importlib_metadata==3.3.0;python_version<\"3.8\""]
classifier = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Rust",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9"
]
[package.metadata.maturin.project-url]
Repository = "https://github.com/gustavgransbo/networkg/"
Documentation = "https://networkg.readthedocs.io/"