-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.cfg
40 lines (35 loc) · 1 KB
/
setup.cfg
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
[metadata]
name = dafne-models
version = attr: dafne_models.__version__
author = Francesco Santini
author_email = [email protected]
description = Deep Learning models module for Dafne
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/dafne-imaging/dafne-models
project_urls =
Bug Tracker = https://github.com/dafne-imaging/dafne-model/issues
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Operating System :: OS Independent
[options]
package_dir =
= src
packages = find:
python_requires = >=3.6
install_requires =
dafne_dl >= 1.4a2
matplotlib
include_package_data = True
[options.extras_require]
gui =
PyQt5
[options.packages.find]
where = src
[options.package_data]
defne_models = resources/*
[options.entry_points]
console_scripts =
create_model = dafne_models.bin.create_model:main
create_model_ui = dafne_models.ui.ModelTrainer:main