-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
69 lines (64 loc) · 1.5 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
63
64
65
66
67
68
69
[build-system]
requires = ["numpy", "setuptools", "setuptools-scm", "wheel", "scikit-build", "cmake", "pybind11"]
build-backend = "setuptools.build_meta"
[project]
name="fidanka"
authors = [
{name = "Thomas M. Boudreaux", email="[email protected]"},
{name = "Martin Ying", email="[email protected]"},
]
description="Fiducual line generation and isochone fitting"
readme="README.md"
requires-python = ">=3.9"
keywords=["Globular Cluster"]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
dependencies = [
"matplotlib",
"numpy",
"scipy",
"tqdm",
"pandas",
"pybind11",
"emcee",
"pyTensor",
"pymc",
"scikit-learn"
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/tboudreaux/fidanka"
[tool.black]
line-length = 88 # Specify the line length
target-version = ['py39', 'py310', 'py311'] # Specify your Python version
include = '\.pyi?$'
exclude = ''' # Specify the files/dirs that should be ignored by the black formatter
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.commitizen]
name = "cz_conventional_commits"
version = "0.6.0a1"
version_files = [
"pyproject.toml:version",
"src/fidanka/__init__.py",
"CITATION.cff"
]
[tool.setuptools.dynamic]
version = {attr = "fidanka.__version__"}