# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='hatchling',
version='%%PORTVERSION%%',
description='Modern, extensible Python build backend',
long_description='# Hatchling\n\n
\n\n

\n\n| | |\n| --- | --- |\n| Package | [](https://pypi.org/project/hatchling/) [](https://pypi.org/project/hatchling/) [](https://pypi.org/project/hatchling/) |\n| Meta | [](https://github.com/pypa/hatch) [](https://github.com/charliermarsh/ruff) [](https://github.com/psf/black) [](https://github.com/python/mypy) [](https://spdx.org/licenses/) [](https://github.com/sponsors/ofek) |\n\n
\n\n-----\n\nThis is the extensible, standards compliant build backend used by [Hatch](https://github.com/pypa/hatch).\n\n## Usage\n\nThe following snippet must be present in your project\'s `pyproject.toml` file in order to use Hatchling as your build backend:\n\n```toml\n[build-system]\nrequires = ["hatchling"]\nbuild-backend = "hatchling.build"\n```\n\nThen a build frontend like [pip](https://github.com/pypa/pip), [build](https://github.com/pypa/build), or Hatch itself can build or install your project automatically:\n\n```console\n# install using pip\npip install /path/to/project\n\n# build\npython -m build /path/to/project\n\n# build with Hatch\nhatch build /path/to/project\n```\n\n## Documentation\n\n- [Project metadata](https://hatch.pypa.io/latest/config/metadata/)\n- [Dependencies](https://hatch.pypa.io/latest/config/dependency/)\n- [Packaging](https://hatch.pypa.io/latest/config/build/)\n',
author_email='Ofek Lev ',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=[
'editables>=0.3',
'importlib-metadata; python_version < "3.8"',
'packaging>=21.3',
'pathspec>=0.10.1',
'pluggy>=1.0.0',
'tomli>=1.2.2; python_version < "3.11"',
],
entry_points={
'console_scripts': [
'hatchling = hatchling.cli:hatchling',
],
},
packages=[
'hatchling',
'hatchling.bridge',
'hatchling.builders',
'hatchling.builders.hooks',
'hatchling.builders.hooks.plugin',
'hatchling.builders.plugin',
'hatchling.cli',
'hatchling.cli.build',
'hatchling.cli.dep',
'hatchling.cli.metadata',
'hatchling.cli.version',
'hatchling.dep',
'hatchling.licenses',
'hatchling.metadata',
'hatchling.metadata.plugin',
'hatchling.plugin',
'hatchling.utils',
'hatchling.version',
'hatchling.version.scheme',
'hatchling.version.scheme.plugin',
'hatchling.version.source',
'hatchling.version.source.plugin',
],
package_dir={'': 'src'},
)