-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (39 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
40
41
42
43
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "DBNets"
version = "1.0.0"
authors = [
{ name="Alessandro Ruzza", email="alessandro.ruzza@unimi.it" },
{name="Giuseppe Lodato"},
{name="Giovanni Pietro Rosotti"}
]
description = "Dust Busters Nets - Deep learning tool for mass inference of gap opening planets in dusty discs."
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU GPLv3 License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
"pandas",
"tensorflow<=2.15",
"keras<=2.15.0",
"scipy",
"tf_keras_vis",
"tqdm",
"opencv-python",
"astropy",
]
[project.urls]
"Homepage" = "https://github.com/aleruzza/DBNets"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
# scanning for namespace packages is true by default in pyproject.toml, so
# you need NOT include the following line.
namespaces = true
where = ["src"]