-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
46 lines (36 loc) · 959 Bytes
/
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
[project]
name = "iCCF"
version = "0.3.21"
description = "Analysis of CCF profiles and activity indicators"
authors = [
{name = "João Faria", email = "[email protected]"},
]
dependencies = [
"numpy",
"scipy",
"matplotlib",
"astropy",
"cached_property",
"paramiko",
"tqdm",
]
requires-python = ">=3.7"
readme = {file = "README.md", content-type = "text/markdown"}
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3",
]
[project.urls]
Homepage = "https://j-faria.github.io/iCCF/"
Repository = "https://github.com/j-faria/iCCF"
Issues = "https://github.com/j-faria/iCCF/issues"
[project.scripts]
iccf-make-ccf = "iCCF.scripts:make_CCF"
iccf-check-ccf = "iCCF.scripts:check_CCF"
[tool.setuptools]
packages = ['iCCF']
[tool.setuptools.package-data]
iCCF = ['example_data/*.npy', 'data/*']
[build-system]
requires = ["setuptools", "wheel", "numpy"]
build-backend = "setuptools.build_meta"