-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
39 lines (33 loc) · 1.01 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
[project]
name = "P4J"
dynamic = ["version"]
dependencies = [
"numpy>1.19.0",
"scipy"
]
requires-python = ">=3.8"
authors = [{name = "Pablo Huijse", email = "pablo.huijse@gmail.com"}]
description = "Periodic light curve analysis tools based on Information Theory"
readme = "README.md"
license = {file = "LICENSE.txt"}
keywords = ["astronomy", "time series", "period estimation", "information theory"]
classifiers = [
"Natural Language :: English",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
"Programming Language :: Python",
"Programming Language :: Cython",
]
[project.urls]
Homepage = "https://github.com/phuijse/P4J"
Repository = "https://github.com/phuijse/P4J"
[build-system]
requires = ["setuptools", "wheel", "numpy", "Cython>=3.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.dynamic]
version = {attr = "P4J.__version__"}