forked from Anexen/pyxirr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
45 lines (41 loc) · 881 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
37
38
39
40
41
42
43
44
45
[package]
name = "pyxirr"
version = "0.10.5"
authors = ["Anexen"]
edition = "2021"
description = "Rust-powered collection of financial functions for Python."
readme = "README.md"
homepage = "https://github.com/Anexen/pyxirr"
license = "Unlicense"
keywords = [
"python",
"fast",
"financial",
"xirr",
"cashflow",
"day count convention",
"PME",
]
include = [
"src/**",
"docs/_inline/**",
"Cargo.toml",
"pyproject.toml",
"LICENSE",
]
[lib]
name = "pyxirr"
crate-type = ["rlib", "cdylib"]
doctest = false
[dependencies]
pyo3 = "0.20"
numpy = "0.20"
time = { version = "0.3", features = ["parsing", "macros"] }
ndarray = "0.15"
# num-complex = "0.4"
[dev-dependencies]
assert_approx_eq = "1.1"
rstest = { version = "0.18.2", default-features = false }
pyo3 = { version = "0.20", features = ["auto-initialize"]}
[features]
nonumpy = []