|
| 1 | +[build-system] |
| 2 | +requires = ["flit_core"] |
| 3 | +build-backend = "flit_core.buildapi" |
| 4 | + |
| 5 | +[tool.flit.metadata] |
| 6 | +module = "cloudpickle" |
| 7 | +author = "The cloudpickle developer team" |
| 8 | + |
| 9 | +home-page = "https://github.com/cloudpipe/cloudpickle" |
| 10 | +description-file = "README.md" |
| 11 | +requires-python = ">=3.8" |
| 12 | +license = "BSD-3-Clause" |
| 13 | +classifiers = [ |
| 14 | + 'Development Status :: 5 - Production/Stable', |
| 15 | + 'Intended Audience :: Developers', |
| 16 | + 'License :: OSI Approved :: BSD License', |
| 17 | + 'Operating System :: POSIX', |
| 18 | + 'Operating System :: Microsoft :: Windows', |
| 19 | + 'Operating System :: MacOS :: MacOS X', |
| 20 | + 'Programming Language :: Python :: 3.8', |
| 21 | + 'Programming Language :: Python :: 3.9', |
| 22 | + 'Programming Language :: Python :: 3.10', |
| 23 | + 'Programming Language :: Python :: 3.11', |
| 24 | + 'Programming Language :: Python :: 3.12', |
| 25 | + 'Programming Language :: Python :: Implementation :: CPython', |
| 26 | + 'Programming Language :: Python :: Implementation :: PyPy', |
| 27 | + 'Topic :: Software Development :: Libraries :: Python Modules', |
| 28 | + 'Topic :: Scientific/Engineering', |
| 29 | + 'Topic :: System :: Distributed Computing', |
| 30 | +] |
| 31 | + |
| 32 | +[tool.black] |
| 33 | +line-length = 88 |
| 34 | +target_version = ['py38', 'py39', 'py310', 'py311', 'py312'] |
| 35 | +preview = true |
| 36 | + |
| 37 | +[tool.ruff] |
| 38 | +line-length = 88 |
| 39 | +target-version = "py38" |
0 commit comments