-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.cfg
55 lines (51 loc) · 1.35 KB
/
setup.cfg
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
[metadata]
name = jupyterhub_moss
version = attr: jupyterhub_moss.version
author = European Synchrotron Radiation Facility
author_email = [email protected]
description = JupyterHub SLURM Spawner with specific spawn page
long_description = file: README.md
long_description_content_type = text/markdown
license_files = LICENSE
url = https://github.com/silx-kit/jupyterhub_moss
keywords = jupyterhub,slurm
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Web Environment
Framework :: Jupyter
License :: OSI Approved :: MIT License
Operating System :: POSIX :: Linux
Programming Language :: Python :: 3
Programming Language :: JavaScript
[options]
packages = jupyterhub_moss
include_package_data = False
python_requires = >=3.8
install_requires =
batchspawner>=1.0
jinja2
jupyterhub>=5.0.0
pydantic>=2.4.0,<3
traitlets
[options.package_data]
jupyterhub_moss =
batch_script.sh
form/*.css
form/*.js
templates/*.html
[options.extras_require]
dev =
black
build
bump2version
check-manifest
flake8
jupyter_server
mypy
pytest
pytest-asyncio>=0.17,<0.23
# E501 (line too long) ignored
# E203 and W503 incompatible with black formatting (https://black.readthedocs.io/en/stable/compatible_configs.html#flake8)
[flake8]
ignore = E501, E203, W503
max-line-length = 88