-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
58 lines (51 loc) · 1.83 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
[build-system]
requires = ["setuptools >= 68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "TemporalGP"
dynamic = ["version"]
dependencies = [
"numpy",
"so4gp",
"ypstruct",
"scikit-fuzzy",
"python-dateutil"
]
requires-python = ">=3.11"
authors = [
{name = "Dickson Owuor", email = "[email protected]"},
{name = "Anne Laurent", email = "[email protected]"}
]
maintainers = [
{name = "Dickson Owuor", email = "[email protected]"}
]
description = "A Python implementation of the Temporal GRAdual rANKing algorithm."
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["gradual patterns", "GRAANK", "time series", "AMI"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: GNU General Public License v3 License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
]
# docs = []
[project.urls]
Homepage = "https://github.com/owuordickson/tgraank"
Documentation = "http://tgraank.readthedocs.io"
Repository = "https://github.com/owuordickson/tgraank.git"
"Bug Tracker" = "https://github.com/owuordickson/tgraank/issues"
Changelog = "https://github.com/owuordickson/tgraank/blob/main/CHANGELOG.md"
[project.scripts]
TemporalGP = "TemporalGP.cli_tgp:main_cli"
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic]
version = {attr = "TemporalGP.__version__"}
[tool.setuptools.packages.find]
where = ["src"] # list of folders that contain the packages (["."] by default)
include = ["*"] # package names should match these glob patterns (["*"] by default)
exclude = ["tests*"] # exclude packages matching these glob patterns (empty by default)
namespaces = false # to disable scanning PEP 420 namespaces (true by default)