mirror of https://github.com/pypa/hatch.git
53 lines
1.3 KiB
Python
53 lines
1.3 KiB
Python
from hatch.template import File
|
|
from hatch.utils.fs import Path
|
|
from hatchling.metadata.spec import DEFAULT_METADATA_VERSION
|
|
|
|
from ..new.feature_no_src_layout import get_files as get_template_files
|
|
|
|
|
|
def get_files(**kwargs):
|
|
relative_root = kwargs.get('relative_root', '')
|
|
|
|
files = []
|
|
for f in get_template_files(**kwargs):
|
|
part = f.path.parts[0]
|
|
if part in {'my_app', 'pyproject.toml', 'README.md', 'LICENSE.txt'}:
|
|
files.append(File(Path(relative_root, f.path), f.contents))
|
|
|
|
files.extend((
|
|
File(Path(relative_root, 'hatch.toml'), ''),
|
|
File(
|
|
Path(relative_root, 'PKG-INFO'),
|
|
f"""\
|
|
Metadata-Version: {DEFAULT_METADATA_VERSION}
|
|
Name: {kwargs['project_name']}
|
|
Version: 0.0.1
|
|
Description-Content-Type: text/markdown
|
|
|
|
# My.App
|
|
|
|
[![PyPI - Version](https://img.shields.io/pypi/v/my-app.svg)](https://pypi.org/project/my-app)
|
|
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/my-app.svg)](https://pypi.org/project/my-app)
|
|
|
|
-----
|
|
|
|
## Table of Contents
|
|
|
|
- [Installation](#installation)
|
|
- [License](#license)
|
|
|
|
## Installation
|
|
|
|
```console
|
|
pip install my-app
|
|
```
|
|
|
|
## License
|
|
|
|
`my-app` is distributed under the terms of the [MIT](https://spdx.org/licenses/MIT.html) license.
|
|
""",
|
|
),
|
|
))
|
|
|
|
return files
|