-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
44 lines (39 loc) · 1.19 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
[project]
name = "particula"
description = "a simple, fast, and powerful particle simulator"
readme = "readme.md"
requires-python = ">=3.9"
license = {file = "license"}
authors = [
{name = "Particula developers", email = "[email protected]"},
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Atmospheric Science",
]
keywords = [
"atmospheric", "particles", "climate", "aerosol", "particulate"
]
dependencies = [
"numpy", "scipy",
]
# This is set automatically by flit using `particula.__version__`
dynamic = ["version"]
[project.urls]
homepage = "https://github.com/uncscode/particula"
repository = "https://github.com/uncscode/particula"
[project.optional-dependencies]
dev = [
"pylint", "pytest", "autopep8", "jupyterlab",
"typing", "build", "flake8", "jupyter-book", "ghp-import",
"mkdocs-material", "handsdown", "mkdocs-jupyter",
]
extra = [
"matplotlib", "pandas", "tqdm", "pint",
]
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"