-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
109 lines (93 loc) · 2.35 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
[project]
name = "autora-core"
description = "Autonomous Research Assistant (AutoRA) is a framework for automating steps of the empirical research process. "
authors = [
{ name="Sebastian Musslick", email="[email protected]" },
{ name="John Gerrard Holland", email="[email protected]" },
]
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.8,<4"
dynamic = ["version"]
classifiers = [ # Optional
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
]
dependencies = [
"numpy>=1,<2",
"matplotlib",
"pandas",
"scikit-learn",
"typer[all]",
]
[project.optional-dependencies]
dev = [
"autora-core[test]",
"autora-core[build]",
"autora-core[notebook]",
"autora-core[docs]",
]
test = [
"pytest",
"hypothesis[pandas]",
"autora-core[serializers]"
]
build = [
"build",
"twine",
"flake8",
"pre-commit",
]
notebook = [
"jupyter",
"ipython",
"ipywidgets",
]
docs = [
"mkdocs-material",
"mkdocs-gen-files",
"mkdocs-literate-nav",
"mkdocs-section-index",
"mkdocs-multirepo-plugin",
"mkdocstrings-python",
"mkdocs-jupyter",
"pymdown-extensions",
]
serializers = [
"dill",
"pyyaml"
]
cylc = [
"cylc-flow",
"cylc-uiserver"
]
[tool.isort]
profile = "black"
known_first_party = ["autora"]
[tool.mypy]
mypy_path="./src"
[[tool.mypy.overrides]]
module = ["matplotlib.*", "sklearn.*", "pandas.*", "numpy.*"]
ignore_missing_imports=true
[project.urls]
homepage = "http://www.empiricalresearch.ai"
repository = "https://github.com/AutoResearch/autora-core"
documentation = "https://autoresearch.github.io/autora/"
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--doctest-modules --import-mode importlib"
pythonpath = "tests"