alemidev
f238d902fa
This meant moving the python source out of src/ . I dislike this project structure but will do for now while I think of something better. setup.cfg is no longer needed and all options are either in pyproject.toml or Cargo.toml. I still need to figure out a lot of stuff. Co-authored-by: f-tlm <f-tlm@users.noreply.github.com>
17 lines
307 B
TOML
17 lines
307 B
TOML
[package]
|
|
name = "aiocraft"
|
|
version = "1.0.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "aiocraft"
|
|
path = "src/lib.rs" # The source file of the target.
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
log = "0.4.17"
|
|
pyo3-log = "0.6.0"
|
|
pyo3 = { version = "0.16.4", features = ["extension-module"] }
|
|
|
|
[style]
|
|
use_tabs = true
|