\d+)
77 | (?P((a|b|rc)\d+)|)
78 | \.?
79 | (?P(?<=\.)dev\d*|)
80 | '''
81 |
82 | [tool.tbump.git]
83 | message_template = "Bump to {new_version}"
84 | tag_template = "v{new_version}"
85 |
86 | [[tool.tbump.file]]
87 | src = "setup.py"
88 |
89 | [[tool.tbump.file]]
90 | src = "batchspawner/_version.py"
91 |
--------------------------------------------------------------------------------
/setup.py:
--------------------------------------------------------------------------------
1 | from setuptools import setup
2 |
3 | with open("README.md") as f:
4 | long_description = f.read()
5 |
6 | setup(
7 | name="batchspawner",
8 | entry_points={
9 | "console_scripts": ["batchspawner-singleuser=batchspawner.singleuser:main"],
10 | },
11 | packages=["batchspawner"],
12 | version="1.3.1.dev",
13 | description="""Batchspawner: A spawner for Jupyterhub to spawn notebooks using batch resource managers.""",
14 | long_description=long_description,
15 | long_description_content_type="text/markdown",
16 | author="Michael Milligan, Andrea Zonca, Mike Gilbert",
17 | author_email="milligan@umn.edu",
18 | url="http://jupyter.org",
19 | license="BSD",
20 | platforms="Linux, Mac OS X",
21 | keywords=["Interactive", "Interpreter", "Shell", "Web", "Jupyter"],
22 | classifiers=[
23 | "Intended Audience :: Developers",
24 | "Intended Audience :: System Administrators",
25 | "Intended Audience :: Science/Research",
26 | "License :: OSI Approved :: BSD License",
27 | "Programming Language :: Python",
28 | "Programming Language :: Python :: 3",
29 | ],
30 | project_urls={
31 | "Bug Reports": "https://github.com/jupyterhub/batchspawner/issues",
32 | "Source": "https://github.com/jupyterhub/batchspawner/",
33 | "About Jupyterhub": "http://jupyterhub.readthedocs.io/en/latest/",
34 | "Jupyter Project": "http://jupyter.org",
35 | },
36 | python_requires=">=3.6",
37 | install_require={
38 | "jinja2",
39 | "jupyterhub>=1.5.1",
40 | },
41 | extras_require={
42 | "test": [
43 | "pytest",
44 | "pytest-asyncio",
45 | "pytest-cov",
46 | "notebook",
47 | ],
48 | },
49 | )
50 |
--------------------------------------------------------------------------------