-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
25 lines (22 loc) · 770 Bytes
/
pyproject.toml
File metadata and controls
25 lines (22 loc) · 770 Bytes
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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "atlast"
version = "0.1"
description = "An all-in-one toolkit to download, visualize, and analyze ATLAS light curves"
dependencies = [
"numpy>=1.26",
"scipy>=1.11",
"matplotlib>=3.8",
"pandas>=2.1",
"astropy>=6.0",
"tqdm>=4.66",
"requests>=2.32",
]
[tool.setuptools.packages.find]
where = ["."] # list of folders that contain the packages (["."] by default)
include = ["atlast"] # package names should match these glob patterns (["*"] by default)
exclude = [] # exclude packages matching these glob patterns (empty by default)
namespaces = false # to disable scanning PEP 420 namespaces (true by default)
# [project.scripts]