forked from oliverphilcox/RascalC
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
54 lines (49 loc) · 1.64 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
[build-system]
requires = ["hatchling", "hatch-build-scripts"]
build-backend = "hatchling.build"
[project]
name = "RascalC"
dynamic = ["version"]
description = 'A Fast Code for Galaxy Covariance Matrix Estimation'
readme = "README.md"
requires-python = ">=3.9"
# license = "MIT"
keywords = ['correlation functions', 'simulations', 'surveys', 'galaxies']
authors = [
{ name = "Oliver Philcox" },
{ name = "Daniel Eisenstein" },
{ name = "Ross O'Connell" },
{ name = "Alexander Wiegand" },
{ name = "Michael Rashkovetskyi", email = "[email protected]" },
]
maintainers = [
{ name = "Michael Rashkovetskyi", email = "[email protected]" },
]
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Operating System :: POSIX',
'Programming Language :: C++',
'Programming Language :: Python',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
]
dependencies = ['setuptools', 'numpy>=1.23', 'scipy', 'astropy', 'pycorr']
[project.urls]
Documentation = "https://github.com/misharash/RascalC#readme"
Issues = "https://github.com/misharash/RascalC/issues"
Source = "https://github.com/misharash/RascalC"
[project.optional-dependencies]
jackknife = ['scikit-learn']
# load the version
[tool.hatch.version]
path = "RascalC/__init__.py"
# this builds the binaries invoked by the Python library
[[tool.hatch.build.hooks.build-scripts.scripts]]
out_dir = "./RascalC/bin"
work_dir = "./RascalC"
commands = ["make"]
artifacts = ["RascalC/bin/cov.*"]