-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
36 lines (32 loc) · 1.04 KB
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
[project]
name = 'CompStats'
description = 'CompStats implements an evaluation methodology for statistically analyzing competition results and competition'
readme = "README.rst"
license = "Apache-2.0"
dependencies = [
'numpy',
'scikit-learn>=1.3.0',
'pandas',
'seaborn>=0.13.0',
'statsmodels'
]
dynamic = ['version']
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Information Analysis"
]
[tool.setuptools.dynamic]
version = {attr = 'CompStats.__version__'}
[tool.setuptools]
packages = ['CompStats', 'CompStats.tests']
[project.urls]
Homepage = "https://compstats.readthedocs.io"
Repository = "https://github.com/INGEOTEC/CompStats"
Issues = "https://github.com/INGEOTEC/CompStats/issues"