-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
54 lines (49 loc) · 1.22 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
# coding=utf-8
[build-system]
requires = [
"hatchling>=1.4.1",
"hatch-vcs",
"setuptools>=45",
]
build-backend = "hatchling.build"
[project]
name = "ibei"
description = 'Calculator for incomplete Bose-Einstein integral'
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [
{ name = "Joshua Ryan Smith", email = "[email protected]" },
]
keywords = [
"Bose-Einstein integral",
"Bose-Einstein statistics",
"thermal radiation",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Physics",
]
dependencies = [
"astropy",
"attrs",
"mpmath",
"numpy",
]
dynamic = ["version"]
[project.urls]
Documentation = "https://ibei.readthedocs.io/en/latest/"
Issues = "https://github.com/jrsmith3/ibei/issues"
Source = "https://github.com/jrsmith3/ibei"
[tool.hatch.version]
source = "vcs"
[tool.hatch.version.raw-options]
local_scheme = "no-local-version"
[tool.hatch.build.hooks.vcs]
version-file = "src/ibei/_version.py"