-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
64 lines (59 loc) · 1.38 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
[build-system]
requires = ["numpy", "setuptools", "setuptools-scm", "wheel", "scikit-build", "cmake", "pybind11"]
build-backend = "setuptools.build_meta"
[project]
name="CoolDwarf"
authors = [
{name = "Emily M. Boudreaux", email="[email protected]"},
]
description="Brown Dwarf Dynamic Cooling Model"
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",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/tboudreaux/CoolDwarf"
[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 = "1.0.0"
version_files = [
"pyproject.toml:version",
"src/CoolDwarf/__init__.py",
"CITATION.cff"
]
[tool.setuptools.dynamic]
version = {attr = "CoolDwarf.__version__"}