forked from nebari-dev/nebari
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
116 lines (106 loc) · 2.47 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
110
111
112
113
114
115
116
### Build ###
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = [
"src/_nebari",
"src/nebari",
]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "src/_nebari/_version.py"
local_scheme = "node-and-timestamp"
### Project ###
[project]
name = "nebari"
dynamic = ["version"]
description = "A Jupyter and Dask-powered open source data science platform."
readme = "README.md"
requires-python = ">=3.8"
license = "BSD-3-Clause"
authors = [
{ name = "Nebari development team", email = "internal-it@quansight.com" },
]
keywords = [
"aws",
"gcp",
"do",
"azure",
"nebari",
"dask",
"jupyter",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"Framework :: Jupyter :: JupyterLab",
]
dependencies = [
"auth0-python==4.0.0",
"azure-identity==1.12.0",
"azure-mgmt-containerservice==19.1.0",
"bcrypt==3.2.2",
"boto3==1.26.78",
"cloudflare==2.11.1",
"kubernetes==26.1.0",
"pydantic==1.10.5",
"pynacl==1.5.0",
"python-keycloak==2.12.0",
"questionary==1.10.0",
"rich==12.6.0",
"ruamel.yaml==0.17.21",
"typer==0.7.0",
"requests-toolbelt==0.9.1",
]
[project.optional-dependencies]
dev = [
"black==22.3.0",
"dask-gateway",
"diagrams",
"python-dotenv",
"escapism",
"flake8==3.8.4",
"importlib-metadata<5.0",
"jhub-client",
"paramiko",
"pre-commit",
"pytest",
"pytest-timeout",
"pytest-playwright",
"grayskull",
"build",
"jinja2",
]
[project.urls]
Documentation = "https://www.nebari.dev/docs"
Source = "https://github.com/nebari-dev/nebari"
[project.scripts]
nebari = "_nebari.cli.main:app"
[tool.ruff]
select = [
"E",
"F",
"PTH",
]
ignore = [
"E501", # Line too long
"F821", # Undefined name
"PTH123", # open() should be replaced by Path.open()
]
extend-exclude = [
"src/_nebari/template",
"home",
"__pycache__"
]