-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (49 loc) · 1.6 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "lsbi"
dynamic = ["version"]
authors = [
{ name="Will Handley", email="[email protected]" },
{ name="David Yallup", email="[email protected]" },
]
description = "Linear Simulation Based Inference"
readme = "README.rst"
license = {file = "LICENSE"}
requires-python = ">=3.8"
dependencies = [
'numpy',
'scipy',
'matplotlib',
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
]
[project.urls]
"Homepage" = "https://github.com/handley-lab/lsbi"
"Bug Tracker" = "https://github.com/handley-lab/lsbi/issues"
"Documentation" = "https://lsbi.readthedocs.io/en/latest/"
[project.optional-dependencies]
docs = ["sphinx", "sphinx_rtd_theme", "numpydoc"]
test = ["pytest", "pytest-cov", "flake8", "pydocstyle", "packaging", "pre-commit"]
[tool.setuptools.dynamic]
version = {attr = "lsbi._version.__version__"}
[tool.flake8]
max-line-length = 88
extend-ignore = ['E203', 'W503']
[tool.isort]
profile = 'black'
skip_gitignore = true