forked from uw-comphys/shapelets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
74 lines (64 loc) · 2.04 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
## METADATA ##
[project]
name = "shapelets"
version = "1.1"
description = "Shapelets provide reference access to various shapelet functions and some of their applications."
requires-python = ">=3.10"
dependencies = [
"astropy",
"matplotlib",
"numpy<2.0", # testing with numpy=2.0.0 broke other dependencies...
"opencv-python",
"pdoc",
"sep",
"scipy",
]
authors = [
# Added MPT twice because authors and author-email are separated in metadata
{name = "Matthew Peres Tino", email = "[email protected]"},
{name = "Matthew Peres Tino"},
{name = "Abbas Yusuf Abdulaziz"},
{name = "Nasser Mohieddin Abukhdeir"},
{name = "Robert Suderman"},
{name = "Thomas Akdeniz"},
]
license = {file = "LICENSE"}
readme = "README.md"
keywords = [
"shapelets",
"image analysis",
]
classifiers = [
"Topic :: Scientific/Engineering :: Physics",
"License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
]
## NON-METADATA ##
[project.scripts]
shapelets = "shapelets.core.entry_points:run_shapelets"
shapelets-test = "shapelets.core.entry_points:run_tests"
[project.urls]
homepage = "https://uw-comphys.github.io/shapelets"
documentation = "https://uw-comphys.github.io/shapelets"
source = "https://github.com/uw-comphys/shapelets"
download = "https://github.com/uw-comphys/shapelets/releases"
tracker = "https://github.com/uw-comphys/shapelets/issues"
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.package-data]
# Using shapelets as the main directory, then list global patterns underneath it
shapelets = [
'tests/images/*',
'self_assembly/_rdistance*',
]
[tool.setuptools]
# Note: include-package-data (i.e. setup.cfg) is default true in pyproject.toml
# include-package-data = true