-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
102 lines (93 loc) · 2.2 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
[build-system]
requires = ["setuptools>=62", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "mitosis"
dynamic = ["version"]
description = "Reproduce Machine Learning experiments easily"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
keywords = ["Machine Learning", "Science", "Mathematics", "Experiments"]
authors = [
{email = "[email protected]", name = "Jake Stevens-Haas"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Framework :: Jupyter",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Programming Language :: SQL",
"Topic :: Documentation",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Version Control :: Git",
"Topic :: Text Processing :: Markup",
]
dependencies = [
"dill",
"GitPython",
"importlib_metadata",
"ipykernel",
"matplotlib",
"nbconvert",
"nbclient",
"nbformat",
"pandas<2.2",
"sqlalchemy>=1.4",
"toml",
"types-toml",
]
[project.optional-dependencies]
dev = [
"pytest >=6.0.0,<8.0.0",
"pytest-cov",
"flake8",
"flake8-comprehensions>=3.1.0",
"black",
"coverage",
"mypy",
"pandas-stubs",
"pre-commit",
"pytest-lazy-fixture",
"sphinx",
"codecov"
]
[project.urls]
homepage = "https://github.com/Jacob-Stevens-Haas/mitosis"
[project.scripts]
mitosis="mitosis.__main__:main"
[tool.setuptools]
packages = ["mitosis"]
[tool.setuptools_scm]
version_file = "mitosis/_version.py"
[tool.black]
line-length = 88
extend-exclude = '''
/(
\.git
| \.mypy_cache
| \.venv
| .vscode
| version.py
| build
| dist
| env
)/
'''
[tool.pytest.ini_options]
filterwarnings = [
"ignore::RuntimeWarning",
"ignore::UserWarning",]
addopts = '-m "not clean"'
markers = ["clean"]
[tool.codespell]
ignore-words-list = "raison"