-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (40 loc) · 1.01 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
[tool.poetry]
name = "unity"
version = "0.1.1-alpha.2"
description = ""
authors = ["Benjamin Rose <[email protected]>", "David Rubin <[email protected]>"]
license = "MIT"
readme = "README.rst"
repository = "https://github.com/rubind/host_unity"
# homepage
# documentation
classifiers = [
"Develoment Status :: 4 - Beta",
"Environment :: Console",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX"
]
[tool.poetry.dependencies]
python = "^3.6"
numpy = "^1.16"
pystan = "^2.17.1 =!2.18.*"
click = "^7.0"
pandas = "^0.24.1"
sncosmo = {git = "https://github.com/sncosmo/sncosmo.git"}
corner = "^2.0"
seaborn = "^0.9.0"
toml = "^0.10.0"
[tool.poetry.dev-dependencies]
pytest = "^4.3"
pytest-cov = "^2.6"
numpydoc = "^0.8.0"
sphinx = "^1.8"
sphinx-autodoc-typehints = "^1.6"
sphinx_rtd_theme = "^0.4.3"
[tool.poetry.scripts]
unity = "unity.cli:cli"
#[build-system]
#requires = ["poetry>=0.12"]
#build-backend = "poetry.masonry.api"
[build-system]
requires = ["setuptools", "wheel", "oldest-supported-numpy", "Cython"]