-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (40 loc) · 1.29 KB
/
pyproject.toml
File metadata and controls
43 lines (40 loc) · 1.29 KB
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
[project]
name = "within-py"
version = "0.1.0"
description = "High-performance fixed-effects solver for econometric panel data"
readme = "README.md"
authors = [
{name = "Alexander Fischer", email = "alexander-fischer1801@t-online.de"},
{name = "Kristof Schröder", email = "k.schroeder@appliedai-institute.de"},
]
requires-python = ">= 3.9"
license = "MIT"
license-files = [
"LICENSE",
]
keywords = ["fixed-effects", "econometrics", "panel-data", "least-squares", "solver"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Rust",
"Topic :: Scientific/Engineering :: Mathematics",
]
dependencies = [
"numpy>=1.24",
"scipy>=1.10",
]
[project.urls]
Homepage = "https://github.com/py-econometrics/within"
Repository = "https://github.com/py-econometrics/within"
Changelog = "https://github.com/py-econometrics/within/blob/main/CHANGELOG.md"
[build-system]
requires = ["maturin>=1.7,<2"]
build-backend = "maturin"
[tool.maturin]
python-source = "python"
module-name = "within._within"
manifest-path = "crates/within-py/Cargo.toml"
features = ["pyo3/extension-module"]