-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
105 lines (95 loc) · 2.54 KB
/
pyproject.toml
File metadata and controls
105 lines (95 loc) · 2.54 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
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
[tool.poetry]
name = "sameproject"
version = "0.2.5"
description = "Notebooks to Pipelines, reproducible data science, oh my."
authors = ["David Aronchick <aronchick@gmail.com>", "Luke Marsden <me@lukemarsden.net>"]
[tool.poetry.scripts]
same = 'sameproject.main:main'
[tool.poetry.dependencies]
python = "^3.8"
click = ">=8.1"
jupytext = "^1.11.5"
jupyter = "^1.0.0"
Cerberus = "^1.3.4"
python-box = "^5.4.1"
dill = "^0.3.4"
requests = "^2.26.0"
Jinja2 = "^3.0.1"
kfp = "^1.8.12"
"ruamel.yaml" = "0.17.4"
kubernetes = "^18.20.0"
numpy = "^1.21.2"
tblib = "^1.7.0"
metakernel = "^0.27.5"
regex = "^2021.11.10"
pandas = "^1.4.0"
johnnydep = "^1.8"
cytoolz = "^0.11.2"
Pympler = "^1.0.1"
docker = "^5.0.3"
docopt = "^0.6.2"
yarg = "^0.1.9"
pipreqs = "^0.4.11"
python-pachyderm = "^7.3.1"
# AzureML
azureml-core = {version = "^1.42.0", optional = true }
azure-mgmt-applicationinsights = {version = "^3.1.0", optional = true }
azure-mgmt-web = { version = "6.1.0", optional = true }
azureml-pipeline = { version = "^1.42.0", optional = true }
# Dev
PyJWT = { version = "^2.4.0", optional = true }
pip-tools = {version = "^6.6.2", optional = true}
pytest = {version = "^7.1.2", optional = true}
pytest-cov = {version = "^3.0.0", optional = true}
flake8 = { version = "^3.9.2", optional = true }
ipython = {version = "^8.4.0", optional = true}
mock = {version = "^4.0.3", optional = true}
pytest-virtualenv = {version = "^1.7.0", optional = true}
build = { version = "^0.6.1", optional = true }
pip = { version ="^22.1.2", optional = true}
ipykernel = {version = "^6.13.0", optional = true}
pytest-mock = { version = "^3.6.1", optional = true }
setuptools = { version = "^62.3.2", optional = true }
wheel = {version = "^0.37.1", optional = true}
python-dotenv = {version = "^0.20.0", optional = true}
pytest-xdist = { version = "^2.5.0", optional = true }
black = { version = "^22.3.0", optional = true }
[tool.poetry.extras]
azureml = [
"azureml-core",
"azureml-pipeline",
"azure-mgmt-applicationinsights",
"azure-mgmt-web",
]
dev = [
"PyJWT",
"pip-tools",
"pytest",
"pytest-cov",
"flake8",
"ipython",
"mock",
"pytest-virtualenv",
"johnnydep",
"build",
"pip",
"ipykernel",
"pytest-mock",
"setuptools",
"wheel",
"python-dotenv",
"pytest-xdist",
"black"
]
[tool.black]
line-length = 119
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"test",
]
norecursedirs = ["vendor",".venv"]