-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
58 lines (53 loc) · 1.16 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "vegasflow"
version = "1.4.0"
description="Hardware agnostic Monte Carlo integration"
authors = [
{name = "S. Carrazza", email = "[email protected]"},
{name = "J.Cruz-Martinez", email = "[email protected]"}
]
classifiers=[
'Operating System :: Unix',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Physics',
]
dependencies = [
"joblib",
"numpy",
"tensorflow>2.2"
]
[project.optional-dependencies]
docs = [
'sphinx_rtd_theme',
'recommonmark',
'sphinxcontrib-bibtex',
]
examples = [
'cffi',
'pineappl',
'pdfflow',
'scipy'
]
benchmark = [
'vegas', # Lepage's Vegas for benchmarking
]
distribute = [
'dask',
'distributed',
'dask-jobqueue',
]
[tool.black]
line-length = 100
skip_magic_trailing_comma = true
[tool.isort]
atomic = true
line_length = 120
profile = "black" # https://black.readthedocs.io/en/stable/guides/using_black_with_other_tools.html#custom-configuration
skip_gitignore = true
known_first_party = ["bgtrees"]
force_sort_within_sections = true