-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpyproject.toml
46 lines (42 loc) · 1.3 KB
/
pyproject.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
46
[project]
name = "pyxirr"
description-content-type = "text/markdown; charset=UTF-8; variant=GFM"
requires-python = ">=3.7,<3.14"
dynamic = ["version"]
classifiers = [
"Development Status :: 4 - Beta",
"Topic :: Office/Business :: Financial",
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: The Unlicense (Unlicense)",
]
[build-system]
requires = ["maturin>=1,<2"]
build-backend = "maturin"
[tool.maturin]
python-source = "python"
module-name = "pyxirr._pyxirr"
features = ["pyo3/extension-module"]
strip = true
include = [
{ path = "pyproject.toml", format = ["sdist", "wheel"] },
{ path = "Cargo.toml", format = "sdist" },
{ path = "Cargo.lock", format = "sdist" },
{ path = ".cargo/*", format = "sdist" },
{ path = "docs", format = "sdist" },
]
[tool.black]
line-length = 79
target-version = ["py311"]
[tool.isort]
profile = "black"
atomic = true
line_length = 79
lines_after_imports = 2