-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
117 lines (110 loc) · 2.91 KB
/
pyproject.toml
File metadata and controls
117 lines (110 loc) · 2.91 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "AeroViz"
version = "0.1.25"
description = "Aerosol data processing and visualization toolkit. Read, QC, and analyze data from SMPS, APS, AE33, TEOM, Nephelometer, XRF, and 15+ atmospheric instruments."
authors = [{ name = "Alex Chan", email = "alex870521@gmail.com" }]
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.10"
keywords = [
# Core functionality
"aerosol",
"atmospheric-science",
"air-quality",
"data-processing",
"visualization",
# Measurements
"PM2.5",
"PM10",
"black-carbon",
"particle-size-distribution",
"optical-properties",
# Instruments
"SMPS",
"APS",
"aethalometer",
"nephelometer",
"TEOM",
"XRF",
"OC-EC",
# Applications
"environmental-monitoring",
"research",
"quality-control",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Scientific/Engineering :: Chemistry",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"pandas>=2.2.0",
"numpy>=2.0.0",
"matplotlib>=3.8.4",
"scipy>=1.15.0",
"seaborn>=0.13.2",
"scikit-learn>=1.5.1",
"windrose>=1.9.2",
"cartopy>=0.24.1",
"tabulate>=0.9.0",
"rich~=13.9.4",
"numba>=0.63.0"
]
[project.optional-dependencies]
test = [
"pytest>=7.0.0",
"pytest-cov>=4.1.0",
"pytest-mock>=3.10.0",
]
dev = [
"black>=23.0",
"isort>=5.12.0",
"flake8>=6.0.0",
"mypy>=1.5.0",
"build",
"twine",
]
docs = [
"mkdocs>=1.4.0",
"mkdocs-material>=8.0",
"mkdocstrings[python]>=0.18.0",
]
[project.urls]
Homepage = "https://github.com/Alex870521/AeroViz"
Documentation = "https://alex870521.github.io/AeroViz/"
Repository = "https://github.com/Alex870521/AeroViz"
Issues = "https://github.com/Alex870521/AeroViz/issues"
Changelog = "https://github.com/Alex870521/AeroViz/blob/main/docs/CHANGELOG.md"
[tool.pytest.ini_options]
pythonpath = "."
markers = [
"requires_data: marks tests that require actual data files",
]
[tool.commitizen]
name = "cz_conventional_commits"
tag_format = "v$version"
changelog_file = "docs/CHANGELOG.md"
version_scheme = "pep440"
version_provider = "pep621"
update_changelog_on_bump = true
major_version_zero = true
[tool.setuptools.packages.find]
where = ["."]
include = ["AeroViz*"]
exclude = ["tests*"]
namespaces = false
[tool.setuptools.package-data]
AeroViz = ["*", "**/*"]