-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (43 loc) · 1.3 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
# =============================================================================
# PACKAGING
# =============================================================================
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "sierras"
version = "0.2.5"
authors = [{name = "Francisco Fernandez", email = "ffernandev@gmail.com"}]
readme = "README.md"
license = {file = "LICENSE"}
description = "A tool for empirical Arrhenius equation fitting for thermally-induced physicochemical processes."
keywords = [
"arrhenius-process",
"arrhenius-equation",
"arrhenius-fitting",
"arrhenius-plot",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
]
urls = { Homepage = "https://github.com/fernandezfran/sierras" }
dependencies = [
"importlib_metadata",
"matplotlib",
"numpy",
"pandas",
"scikit-learn",
]
[tool.setuptools]
py-modules = ["sierras"]
[tool.black]
line-length = 79
target-version = ["py39"]