Skip to content

Commit

Permalink
Update pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
Okroshiashvili committed Sep 10, 2024
1 parent d98085a commit d539a80
Show file tree
Hide file tree
Showing 2 changed files with 92 additions and 35 deletions.
103 changes: 73 additions & 30 deletions pixi.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 19 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,25 @@ build-backend = "maturin"
[project]
name = "pyirs"
requires-python = ">=3.8"
description = "Python library to parse IRS 990 forms"
authors = [
{name = "Nodar Okroshiashvili"},
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
keywords = ["irs", "irs990", "irspython", "irs form 990", "990 data", "irs form 990 data"]
readme = "README.md"
license = {text = "MIT License"}
dynamic = ["version"]
dependencies = ["maturin>=1.7.1,<2"]
[project.optional-dependencies]

[project.urls]
repository = "https://github.com/Okroshiashvili/irspy"

[tool.maturin]
python-source = "python"
Expand All @@ -24,7 +35,6 @@ features = ["pyo3/extension-module"]
channels = ["https://fast.prefix.dev/conda-forge"]
platforms = ["osx-arm64", "linux-64", "win-64", "osx-64"]


[tool.pixi.environments]
default = { solve-group = "default" }

Expand Down Expand Up @@ -55,12 +65,16 @@ lint = { depends_on = [
"type_check",
"cargo_lint"
] }
test = { depends_on = ["cargo_test", "python_test"] }
test = { depends_on = [
"cargo_test",
"python_test"
] }

### Pixi Dependencies ###
[tool.pixi.dependencies]
maturin = ">=1.7.1,<2"
rust = ">=1.80.1,<2"
python = ">=3.12.5,<4"
python = ">=3.8,<4"
pip = ">=24.2,<25"
ruff = ">=0.6.4,<0.7"
pylint = ">=3.2.7,<4"
Expand Down

0 comments on commit d539a80

Please sign in to comment.