-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
41 lines (35 loc) · 1.03 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
[build-system]
requires = [
"setuptools>=42",
"setuptools_scm[toml]>=3.4.3",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "gpucbc"
authors = [
{name = "Colm Talbot", email = "[email protected]"}
]
description = "GPU enabled CBC parameter estimation"
license = {text = "MIT"}
classifiers = [
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Intended Audience :: Science/Research",
]
dependencies = ["numpy >= 1.16.5", "scipy", "astropy", "bilby >= 2.0"]
readme = {file = "README.md", content-type = "text/markdown"}
dynamic = ["version"]
[project.optional-dependencies]
test = ["pytest", "pytest-cov", "lalsuite"]
[project.urls]
homepage = "https://github.com/ColmTalbot/GPUCBC"
[tool.setuptools.package-data]
"*" = ["README.md", "LICENSE"]
[tool.setuptools.packages.find]
namespaces = false
[tool.setuptools_scm]
write_to = "gpucbc/_version.py"