-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (50 loc) · 1.32 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
[build-system]
requires = ['setuptools>=64']
build-backend = "setuptools.build_meta"
[project]
name = "syncfit"
authors = [{name = "Noah Franz", email = "[email protected]"},
{name = "Collin Christy", email = "[email protected]"}]
readme = "README.md"
license = {file = "LICENSE"}
dynamic = ["version"]
requires-python = ">=3.9"
classifiers = [
"License :: OSI Approved :: BSD License",
"Topic :: Scientific/Engineering",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Development Status :: 1 - Planning"
]
dependencies = [
"numpy>=1.20",
"matplotlib",
"scipy",
"astropy",
"emcee",
"dynesty"
]
[project.optional-dependencies]
docs = [
"syncfit",
"Sphinx",
"myst_parser",
"nbsphinx",
"sphinx-book-theme",
"sphinx_copybutton",
"autodoc",
"ipykernel"
]
[project.urls]
Home = "https://github.com/alexander-group/syncfit"
[tool.setuptools.packages.find]
where = ['src']
[tool.setuptools.dynamic]
version = {attr = 'syncfit._version.__version__'}