-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (39 loc) · 1.13 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
[project]
name = "EncExp"
description = "Set of tools to create and use explainable embeddings."
readme = "README.rst"
dependencies = [
"numpy",
"scikit-learn>=1.3.0",
"microtc",
"b4msa>=2.2.4"
]
dynamic = ["version"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
]
authors = [
{name = "Eric S. Tellez"},
{name = "Mario Graff"},
{name = "Daniela Moctezuma"}
]
maintainers = [
{name = "Mario Graff", email = "[email protected]"}
]
[tool.setuptools.dynamic]
version = {attr = 'encexp.__version__'}
[project.urls]
Repository = "https://github.com/INGEOTEC/EncExp"
Issues = "https://github.com/INGEOTEC/EncExp/issues"
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"