-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.cfg
executable file
·44 lines (39 loc) · 1.04 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
41
42
43
44
[metadata]
name = kartezio
version = 1.0.0a1
description = A CGP Framework for Image Processing
long_description = file: README.md
long_description_content_type = text/markdown
author = Kevin Cortacero
author_email = [email protected]
maintainer = Kevin Cortacero
maintainer_email = [email protected]
license_file = LICENSE
platforms = any
requires-python = >=3.7
classifiers =
Programming Language::Python::3.7
keywords = Machine Learning, Cartesian Genetic Programming, Computer Vision
project_urls =
Source=https://github.com/KevinCortacero/Kartezio
Tracker=https://github.com/KevinCortacero/Kartezio/issues
[options]
packages = find:
package_dir =
=src
install_requires =
numpy
scipy
scikit-image
matplotlib
numba
numena
scikit-learn
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
kartezio-dataset = kartezio.cli.dataset:main
kartezio-pack = kartezio.cli.pack:main
kartezio-graph = kartezio.cli.graph:main
kartezio-insight = kartezio.cli.insight:main