|
1 | 1 | [build-system]
|
2 |
| -requires = ["setuptools>=60.0"] |
3 |
| -build-backend = "setuptools.build_meta" |
| 2 | +requires = ["flit_core >=3.2,<4"] |
| 3 | +build-backend = "flit_core.buildapi" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "jupyter_core" |
| 7 | +description = "Jupyter core package. A base package on which Jupyter projects rely." |
| 8 | +license = { file = "COPYING.md" } |
| 9 | +classifiers = [ |
| 10 | + "Framework :: Jupyter", |
| 11 | + "Intended Audience :: Developers", |
| 12 | + "Intended Audience :: System Administrators", |
| 13 | + "Intended Audience :: Science/Research", |
| 14 | + "License :: OSI Approved :: BSD License", |
| 15 | + "Programming Language :: Python", |
| 16 | + "Programming Language :: Python :: 3" |
| 17 | +] |
| 18 | +requires-python = ">=3.7" |
| 19 | +dependencies = [ |
| 20 | + "traitlets", |
| 21 | + "pywin32>=1.0 ; sys_platform == 'win32' and platform_python_implementation != 'PyPy'" |
| 22 | +] |
| 23 | +dynamic = ["version"] |
| 24 | + |
| 25 | +[[project.authors]] |
| 26 | +name = "Jupyter Development Team" |
| 27 | + |
| 28 | + |
| 29 | +[project.readme] |
| 30 | +text = "There is no reason to install this package on its own." |
| 31 | +content-type = "text/plain" |
| 32 | + |
| 33 | +[project.urls] |
| 34 | +Homepage = "https://jupyter.org" |
| 35 | +Documentation = "https://jupyter-core.readthedocs.io/" |
| 36 | +Funding = "https://numfocus.org/" |
| 37 | +Source = "https://github.com/jupyter/jupyter_core" |
| 38 | +Tracker = "https://github.com/jupyter/jupyter_core/issues" |
| 39 | + |
| 40 | +[project.optional-dependencies] |
| 41 | +test = [ |
| 42 | + "ipykernel", |
| 43 | + "pre-commit", |
| 44 | + "pytest", |
| 45 | + "pytest-cov", |
| 46 | + "pytest-timeout" |
| 47 | +] |
| 48 | + |
| 49 | +[project.scripts] |
| 50 | +jupyter = "jupyter_core.command:main" |
| 51 | +jupyter-migrate = "jupyter_core.migrate:main" |
| 52 | +jupyter-troubleshoot = "jupyter_core.troubleshoot:main" |
4 | 53 |
|
5 | 54 | [tool.mypy]
|
6 | 55 | check_untyped_defs = true
|
|
0 commit comments