-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
62 lines (56 loc) · 1.43 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "zolltools"
version = "0.2"
authors = [
{ name="Joshua Shew", email="joshua.t.shew@gmail.com" },
]
description = "A collection of tools for working with NEMSIS data"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Healthcare Industry",
"Topic :: Scientific/Engineering :: Medical Science Apps."
]
dependencies = [
"fastparquet>2023.1.0",
"pandas>=0.4",
"pyarrow>=2",
"pyreadstat>=1.1.7",
]
[project.urls]
"Homepage" = "https://github.com/Jython1415/zolltools"
"Bug Tracker" = "https://github.com/Jython1415/zolltools/issues"
[tool.hatch.build]
ignore-vcs = true
include = [
"/requirements.txt",
"/LICENSE",
"/README.md",
"/pyproject.toml",
"/src/**/*.py",
"/src/**/resources/*.pkl",
"/tests/**/*.py",
"/tests/**/*.ipynb",
"/tests/integration/**/*.parquet",
"tests/integration/**/*.json"
]
exclude = [
"**/tmp/**"
]
[tool.hatch.build.targets.wheel]
only-include = ["src/zolltools"]
[tool.hatch.build.targets.wheel.sources]
"src" = ""
[tool.pytest.ini_options]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
]