-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.cfg
101 lines (92 loc) · 2.53 KB
/
setup.cfg
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
[metadata]
name = Triumvirate
description = Three-point clustering measurements in large-scale structure analyses.
long_description = file: README.rst
long_description_content_type = text/x-rst
author = Mike S Wang, Naonori S Sugiyama
maintainer = Mike S Wang
maintainer_email = 32841762+MikeSWang@users.noreply.github.com
# version = attr: triumvirate.__version__
# license = GPL-3.0-or-later
license_files = LICENCE
classifiers =
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Operating System :: MacOS
Operating System :: POSIX :: Linux
Programming Language :: C++
Programming Language :: Cython
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Topic :: Scientific/Engineering :: Astronomy
Topic :: Scientific/Engineering :: Information Analysis
Topic :: Scientific/Engineering :: Physics
platform = Linux, Darwin
url = https://mikeswang.github.io/Triumvirate
project_urls =
Documentation = https://triumvirate.readthedocs.io
Source = https://github.com/MikeSWang/Triumvirate
Changelog = https://github.com/MikeSWang/Triumvirate/blob/main/CHANGELOG.md
[options]
packages = find_namespace:
package_dir=
=src
include_package_data = True
python_requires = >=3.10
setup_requires =
setuptools>=61.0
setuptools_scm>=6.4
Cython>=3.0
extension-helpers>=1.1
numpy>=2.0
install_requires =
numpy>=1.23
scipy>=1.13
sympy>=1.12.1
astropy>=4.2
pyyaml>=5.1
tqdm
[options.extras_require]
mpi =
mpi4py>=3.1.5
nbk =
nbodykit
[options.packages.find]
where = src
[options.package_data]
triumvirate =
*.pxd
*.pyx
triumvirate.include =
*.hpp
triumvirate.src =
*.cpp
triumvirate.resources =
*.ini
*.yml
[tool:pytest]
minversion = 7.0
addopts = --full-trace --verbose --capture=no --runslow
testpaths =
tests
[pycodestyle] # AKA: tool.autopep8
in-place = true
recursive = true
aggressive = 3
max_line_length = 79
ignore = E226
[tool:numpydoc_validation]
checks = all,ES01,EX01,GL01,GL02,GL03,GL06,RT02,SA01,SS06,
exclude = test_.*,\.__init__$,\.__repr__$,\.__str__$,\.__hash__$,\.__len__$,\.__getitem__$,\.__eq__$,\.__le__$,\.__lt__$,\.__gt__$,\.__ge__$,
# [docformatter]
# recursive = true
# wrap-summaries = 72
# wrap-descriptions = 72
# blank = true
# close-quotes-on-newline = true
# [codespell]
# skip = publication/joss/paper.bib,
# ignore-words-list = ERRO,
# count = true
# quiet-level = 3