|
1 | 1 | [build-system]
|
2 | 2 | requires = [
|
3 | 3 | "jupyterlab>=3.0.0,==3.*",
|
4 |
| - "packaging", |
5 |
| - "setuptools>=40.8.0", |
6 |
| - "wheel", |
| 4 | + "flit_core >=3.2,<4" |
7 | 5 | ]
|
8 |
| -build-backend = "setuptools.build_meta" |
| 6 | +build-backend = "buildapi" |
| 7 | +backend-path = ["."] |
| 8 | + |
| 9 | +[project] |
| 10 | +name = "ipyparallel" |
| 11 | +authors = [{ name = "IPython Development Team", email = "[email protected]"}] |
| 12 | +license = {file = "COPYING.md"} |
| 13 | +readme = "README.md" |
| 14 | +description = "Interactive Parallel Computing with IPython" |
| 15 | +keywords = [ |
| 16 | + "Interactive", |
| 17 | + "Interpreter", |
| 18 | + "Shell", |
| 19 | + "Parallel", |
| 20 | +] |
| 21 | +classifiers = [ |
| 22 | + "Framework :: Jupyter", |
| 23 | + "Framework :: Jupyter :: JupyterLab", |
| 24 | + "Framework :: Jupyter :: JupyterLab :: 3", |
| 25 | + "Framework :: Jupyter :: JupyterLab :: Extensions", |
| 26 | + "Framework :: Jupyter :: JupyterLab :: Extensions :: Prebuilt", |
| 27 | + "Intended Audience :: Developers", |
| 28 | + "Intended Audience :: System Administrators", |
| 29 | + "Intended Audience :: Science/Research", |
| 30 | + "License :: OSI Approved :: BSD License", |
| 31 | + "Programming Language :: Python", |
| 32 | + "Programming Language :: Python :: 3.7", |
| 33 | + "Programming Language :: Python :: 3.8", |
| 34 | + "Programming Language :: Python :: 3.9", |
| 35 | +] |
| 36 | +urls = {Homepage = "https://ipython.org"} |
| 37 | +requires-python = ">=3.7" |
| 38 | +dependencies = [ |
| 39 | + "entrypoints", |
| 40 | + "decorator", |
| 41 | + "pyzmq>=18", |
| 42 | + "traitlets>=4.3", |
| 43 | + "ipython>=4", |
| 44 | + "jupyter_client", |
| 45 | + "ipykernel>=4.4", |
| 46 | + "tornado>=5.1", |
| 47 | + "psutil", |
| 48 | + "python-dateutil>=2.1", |
| 49 | + "tqdm", |
| 50 | +] |
| 51 | +dynamic = ["version"] |
| 52 | + |
| 53 | +[project.entry-points."ipyparallel.controller_launchers"] |
| 54 | +batch = "ipyparallel.cluster.launcher:BatchControllerLauncher" |
| 55 | +htcondor = "ipyparallel.cluster.launcher:HTCondorControllerLauncher" |
| 56 | +local = "ipyparallel.cluster.launcher:LocalControllerLauncher" |
| 57 | +lsf = "ipyparallel.cluster.launcher:LSFControllerLauncher" |
| 58 | +mpi = "ipyparallel.cluster.launcher:MPIControllerLauncher" |
| 59 | +pbs = "ipyparallel.cluster.launcher:PBSControllerLauncher" |
| 60 | +sge = "ipyparallel.cluster.launcher:SGEControllerLauncher" |
| 61 | +ssh = "ipyparallel.cluster.launcher:SSHControllerLauncher" |
| 62 | +slurm = "ipyparallel.cluster.launcher:SlurmControllerLauncher" |
| 63 | +winhpc = "ipyparallel.cluster.launcher:WindowsHPCControllerLauncher" |
| 64 | + |
| 65 | +[project.entry-points."ipyparallel.engine_launchers"] |
| 66 | +batch = "ipyparallel.cluster.launcher:BatchEngineSetLauncher" |
| 67 | +htcondor = "ipyparallel.cluster.launcher:HTCondorEngineSetLauncher" |
| 68 | +local = "ipyparallel.cluster.launcher:LocalEngineSetLauncher" |
| 69 | +lsf = "ipyparallel.cluster.launcher:LSFEngineSetLauncher" |
| 70 | +mpi = "ipyparallel.cluster.launcher:MPIEngineSetLauncher" |
| 71 | +pbs = "ipyparallel.cluster.launcher:PBSEngineSetLauncher" |
| 72 | +sge = "ipyparallel.cluster.launcher:SGEEngineSetLauncher" |
| 73 | +slurm = "ipyparallel.cluster.launcher:SlurmEngineSetLauncher" |
| 74 | +ssh = "ipyparallel.cluster.launcher:SSHEngineSetLauncher" |
| 75 | +sshproxy = "ipyparallel.cluster.launcher:SSHProxyEngineSetLauncher" |
| 76 | +winhpc = "ipyparallel.cluster.launcher:WindowsHPCEngineSetLauncher" |
| 77 | + |
| 78 | +[project.optional-dependencies] |
| 79 | +nbext = ["notebook", "jupyter_server"] |
| 80 | +serverextension = ["jupyter_server"] |
| 81 | +labextension = ["jupyter_server", "jupyterlab>=3"] |
| 82 | +retroextension = ["jupyter_server", "retrolab"] |
| 83 | +benchmark = ["asv"] |
| 84 | +test = [ |
| 85 | + "pytest", |
| 86 | + "pytest-cov", |
| 87 | + "pytest-asyncio", |
| 88 | + "pytest-tornado", |
| 89 | + "ipython[test]", |
| 90 | + "testpath", |
| 91 | +] |
| 92 | + |
| 93 | +[project.scripts] |
| 94 | +ipcluster = "ipyparallel.cluster.app:main" |
| 95 | +ipcontroller = "ipyparallel.controller.app:main" |
| 96 | +ipengine = "ipyparallel.engine.app:main" |
| 97 | + |
| 98 | +[tool.flit.sdist] |
| 99 | +include = [ |
| 100 | + "benchmarks/", |
| 101 | + "docs/", |
| 102 | + "*.json", |
| 103 | + "yarn.lock", |
| 104 | + "jupyter-data/", |
| 105 | + "lab/", |
| 106 | + "buildapi.py", |
| 107 | +] |
| 108 | +exclude = ["lab/lib/"] |
| 109 | + |
| 110 | +[tool.flit.external-data] |
| 111 | +directory = "jupyter-data" |
9 | 112 |
|
10 | 113 | [tool.black]
|
11 | 114 | skip-string-normalization = true
|
|
0 commit comments