|
1 | 1 | [build-system] |
2 | | -requires = ["setuptools>=40.8.0", "wheel"] |
3 | | -build-backend = "setuptools.build_meta" |
| 2 | +requires = ["flit_core >=3.2,<4"] |
| 3 | +build-backend = "flit_core.buildapi" |
4 | 4 |
|
5 | | -[tool.check-manifest] |
6 | | -ignore = ["tbump.toml", ".*", "codecov.yml"] |
| 5 | +[project] |
| 6 | +name = "jupyter_releaser" |
| 7 | +description = "Jupyter Releaser for Python and/or npm packages." |
| 8 | +license = {text = "BSD 3-Clause License"} |
| 9 | +authors = [{ name = "Jupyter Development Team", email = "[email protected]"}] |
| 10 | +keywords = ["ipython", "jupyter"] |
| 11 | +classifiers = [ |
| 12 | + "Intended Audience :: Developers", |
| 13 | + "Intended Audience :: System Administrators", |
| 14 | + "Intended Audience :: Science/Research", |
| 15 | + "License :: OSI Approved :: BSD License", |
| 16 | + "Programming Language :: Python", |
| 17 | + "Programming Language :: Python :: 3.8", |
| 18 | + "Programming Language :: Python :: 3.9", |
| 19 | + "Programming Language :: Python :: 3.10", |
| 20 | +] |
| 21 | +urls = {Homepage = "https://jupyter.org"} |
| 22 | +requires-python = ">=3.8" |
| 23 | +dependencies = [ |
| 24 | + "build", |
| 25 | + "check-manifest", |
| 26 | + "click", |
| 27 | + "ghapi", |
| 28 | + "github-activity~=0.2", |
| 29 | + "importlib_resources", |
| 30 | + "jsonschema>=3.0.1", |
| 31 | + "packaging", |
| 32 | + "pkginfo", |
| 33 | + "pre-commit", |
| 34 | + "pypiserver", |
| 35 | + "pytest-check-links>=0.7", |
| 36 | + "requests", |
| 37 | + "requests_cache", |
| 38 | + "tbump~=6.7", |
| 39 | + "toml~=0.10", |
| 40 | + "twine", |
| 41 | +] |
| 42 | +dynamic = ["version"] |
| 43 | + |
| 44 | +[project.readme] |
| 45 | +file = "README.md" |
| 46 | +content-type = "text/markdown" |
| 47 | + |
| 48 | +[project.optional-dependencies] |
| 49 | +test = [ |
| 50 | + "coverage", |
| 51 | + "pytest>=7.0", |
| 52 | + "pytest-cov", |
| 53 | + "pytest-mock", |
| 54 | +] |
| 55 | + |
| 56 | +[project.scripts] |
| 57 | +jupyter-releaser = "jupyter_releaser.cli:main" |
7 | 58 |
|
8 | 59 | [tool.tbump.version] |
9 | 60 | current = "0.20.0" |
|
0 commit comments