-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 934 Bytes
/
pyproject.toml
File metadata and controls
42 lines (38 loc) · 934 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[build-system]
requires = ["setuptools>=69,<75"]
build-backend = "setuptools.build_meta"
[project]
name = "cerespp"
version = "1.4.0"
description = "An extension to ceres."
readme = "README.md"
license = "MIT"
requires-python = ">=3.6"
authors = [
{name = "Jose Vines", email = "jose.vines@ug.uchile.cl"},
]
maintainers = [
{name = "Jose Vines", email = "jose.vines@ug.uchile.cl"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Astronomy",
]
dependencies = [
"numpy",
"scipy",
"matplotlib",
"astropy",
"PyAstronomy",
"tqdm",
"termcolor",
]
[project.urls]
Homepage = "https://github.com/jvines/Ceres-plusplus"
[project.scripts]
cerespp = "cerespp.__main__:main"
[tool.setuptools.package-data]
cerespp = ["masks/*"]