Skip to content

Commit f835c18

Browse files
committed
Use hatchling for build
1 parent a2c5c61 commit f835c18

File tree

6 files changed

+84
-96
lines changed

6 files changed

+84
-96
lines changed

.github/workflows/main.yml

+12-20
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ on:
88
- v*
99
pull_request:
1010
schedule:
11-
- cron: '30 16 1 * *'
11+
- cron: "30 16 1 * *"
1212

1313
jobs:
1414
tests:
1515
runs-on: ubuntu-latest
1616
timeout-minutes: 10
1717
env:
18-
PYTHONPATH: "."
18+
PYTHONPATH: "src"
1919
strategy:
2020
matrix:
2121
# https://github.com/actions/python-versions/blob/main/versions-manifest.json
@@ -37,15 +37,14 @@ jobs:
3737
- django-version: "https://github.com/django/django/archive/main.tar.gz"
3838
python-version: 3.9
3939

40-
4140
steps:
4241
- uses: actions/checkout@v3
4342
- uses: actions/setup-python@v4
4443
if: "!endsWith(matrix.python-version, '-dev')"
4544
with:
4645
python-version: ${{ matrix.python-version }}
47-
cache: 'pip'
48-
cache-dependency-path: 'setup.cfg'
46+
cache: "pip"
47+
cache-dependency-path: "pyproject.toml"
4948
- uses: deadsnakes/[email protected]
5049
if: endsWith(matrix.python-version, '-dev')
5150
with:
@@ -60,14 +59,14 @@ jobs:
6059
runs-on: ubuntu-latest
6160
timeout-minutes: 10
6261
env:
63-
PYTHONPATH: "."
62+
PYTHONPATH: "src"
6463
steps:
6564
- uses: actions/checkout@v3
6665
- uses: actions/setup-python@v4
6766
with:
6867
python-version: "3.11"
69-
cache: 'pip'
70-
cache-dependency-path: 'setup.cfg'
68+
cache: "pip"
69+
cache-dependency-path: "pyproject.toml"
7170
- uses: actions/cache@v3
7271
with:
7372
path: ~/.cache/pre-commit
@@ -84,15 +83,13 @@ jobs:
8483
uses: actions/setup-python@v4
8584
with:
8685
python-version: "3.11"
87-
cache: 'pip'
88-
cache-dependency-path: 'setup.cfg'
86+
cache: "pip"
87+
cache-dependency-path: "pyproject.toml"
8988
- name: Install dependencies
9089
run: |
91-
python -m pip install setuptools wheel twine
90+
python -m pip install hatch
9291
- name: Package
93-
run: |
94-
python setup.py sdist bdist_wheel
95-
twine check dist/*
92+
run: python -m hatch build
9693
- name: Upload dist
9794
uses: actions/upload-artifact@v3
9895
with:
@@ -109,12 +106,7 @@ jobs:
109106
- name: Set release env
110107
id: release_output
111108
run: |
112-
VERSION=$(awk '$1 == "version" {print $3}' setup.cfg)
113-
TAG_VERSION="${GITHUB_REF:11}"
114-
if [[ "$VERSION" != "$TAG_VERSION" ]]; then
115-
echo "Tag doesn't match package version."
116-
exit 1
117-
fi
109+
VERSION="${GITHUB_REF:11}"
118110
BODY=$(awk -v RS='### ' '/'$VERSION'.*/ {print $0}' CHANGELOG.md)
119111
if [[ -z "$BODY" ]]; then
120112
echo "No changelog record for version $VERSION."

.pre-commit-config.yaml

+2-7
Original file line numberDiff line numberDiff line change
@@ -23,22 +23,17 @@ repos:
2323
- id: mixed-line-ending
2424
args: ["--fix=lf"]
2525

26-
- repo: https://github.com/mgedmin/check-manifest
27-
rev: "0.49"
28-
hooks:
29-
- id: check-manifest
30-
3126
- repo: local
3227
hooks:
3328
- id: mypy
3429
name: mypy
3530
language: system
36-
entry: mypy
31+
entry: env PYTHONPATH=src mypy
3732
args: [src/extra_checks, tests]
3833
pass_filenames: false
3934
- id: django-check
4035
name: django check
4136
language: system
42-
entry: env DJANGO_SETTINGS_MODULE=tests.settings django-admin
37+
entry: env PYTHONPATH=src DJANGO_SETTINGS_MODULE=tests.settings django-admin
4338
args: [check, --fail-level, CRITICAL]
4439
pass_filenames: false

MANIFEST.in

-10
This file was deleted.

pyproject.toml

+70
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,73 @@
1+
[build-system]
2+
requires = ["hatchling", "hatch-vcs"]
3+
build-backend = "hatchling.build"
4+
5+
[project]
6+
name = "django-extra-checks"
7+
dynamic = ["version"]
8+
description = "Collection of useful checks for Django Checks Framework"
9+
readme = "README.md"
10+
license = "MIT"
11+
requires-python = ">=3.7"
12+
authors = [
13+
{ name = "Konstantin Alekseev", email = "[email protected]" },
14+
]
15+
keywords = [
16+
"checks",
17+
"django",
18+
]
19+
classifiers = [
20+
"Development Status :: 4 - Beta",
21+
"Environment :: Web Environment",
22+
"Framework :: Django",
23+
"Framework :: Django :: 3.2",
24+
"Framework :: Django :: 4.0",
25+
"Framework :: Django :: 4.1",
26+
"Intended Audience :: Developers",
27+
"License :: OSI Approved :: MIT License",
28+
"Operating System :: OS Independent",
29+
"Programming Language :: Python",
30+
"Programming Language :: Python :: 3",
31+
"Programming Language :: Python :: 3.7",
32+
"Programming Language :: Python :: 3.8",
33+
"Programming Language :: Python :: 3.9",
34+
"Programming Language :: Python :: 3.10",
35+
"Programming Language :: Python :: 3.11",
36+
]
37+
dependencies = [
38+
"typing-extensions ; python_version < \"3.8\"",
39+
]
40+
41+
[project.optional-dependencies]
42+
dev = [
43+
"black",
44+
"Django",
45+
"django-stubs",
46+
"djangorestframework",
47+
"djangorestframework-stubs",
48+
"mypy",
49+
"pdbpp",
50+
"pre-commit",
51+
"ruff",
52+
]
53+
test = [
54+
"pytest",
55+
"pytest-cov",
56+
"pytest-django",
57+
]
58+
59+
[project.urls]
60+
Homepage = "https://github.com/kalekseev/django-extra-checks"
61+
62+
[tool.hatch.version]
63+
source = "vcs"
64+
raw-options = { local_scheme = "no-local-version" }
65+
66+
[tool.hatch.build.targets.sdist]
67+
include = [
68+
"/src",
69+
]
70+
171
[tool.ruff]
272
src = ["src"]
373
target-version = "py37"

setup.cfg

-56
This file was deleted.

setup.py

-3
This file was deleted.

0 commit comments

Comments
 (0)