forked from PolicyEngine/policyengine-us
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (40 loc) · 1.14 KB
/
pyproject.toml
File metadata and controls
45 lines (40 loc) · 1.14 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
44
[project]
name = "policyengine-us"
version = "1.411.0"
description = "Add your description here."
readme = "README.md"
authors = [
{ name = "PolicyEngine", email = "hello@policyengine.org" }
]
requires-python = ">=3.10,<3.14"
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Information Analysis",
]
dependencies = [
"microdf-python>=1.0.0",
"policyengine-core>=3.19.0",
"tqdm>=4.67.1",
]
[project.scripts]
policyengine-us = "policyengine_us:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.optional-dependencies]
dev = [
"coverage>=7.9.2",
"furo>=2024.8.6",
"jupyter-book>=1.0.4.post1",
"setuptools>=80.9.0",
"build>=1.2.2.post1",
]
[tool.hatch.build.targets.wheel]
packages = ["policyengine_us"]