Skip to content

Commit 5663fc2

Browse files
authored
Merge pull request #153 from danthedeckie/pyproject.toml-only
Switch completely to pyproject.toml (& hatch for building)
2 parents d4d553c + 9cb9bea commit 5663fc2

File tree

6 files changed

+62
-35
lines changed

6 files changed

+62
-35
lines changed

.github/workflows/ci.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,16 @@ jobs:
99
uses: actions/setup-python@master
1010
with:
1111
python-version: '3.10'
12+
- name: Install dev dependencies
13+
run : |
14+
pip install -r requirements/dev.txt
1215
- name: Lint
1316
run: |
14-
pip install -r requirements/dev.txt
1517
make lint
16-
run:
18+
- name: Build & check sdist & wheel
19+
run: |
20+
make dist/
21+
tests:
1722
runs-on: ${{ matrix.os }}
1823
strategy:
1924
matrix:

MANIFEST.in

-3
This file was deleted.

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ autotest:
66

77
.PHONY: test
88

9-
dist/: setup.cfg simpleeval.py README.rst
10-
python -m build
9+
dist/: pyproject.toml simpleeval.py README.rst
10+
hatch build
1111
twine check dist/*
1212

1313
pypi: test dist/

pyproject.toml

+51-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,54 @@
1+
[project]
2+
name = "simpleeval"
3+
version = "1.0.1"
4+
requires-python = ">=3.9"
5+
readme = "README.rst"
6+
description = "A simple, safe single expression evaluator library."
7+
licence = "MIT"
8+
authors = [
9+
{ name = "Daniel Fairhead", email = "danthedeckie@gmail.com" }
10+
]
11+
maintainers = [
12+
{ name = "Daniel Fairhead", email = "danthedeckie@gmail.com" }
13+
]
14+
keywords = [
15+
"eval", "simple", "expression", "parse", "ast"
16+
]
17+
18+
classifiers = [
19+
"Development Status :: 5 - Production/Stable",
20+
"Intended Audience :: Developers",
21+
"License :: OSI Approved :: MIT License",
22+
"Topic :: Software Development :: Libraries :: Python Modules",
23+
"Programming Language :: Python",
24+
]
25+
dependencies = [
26+
"pip>=24.2",
27+
]
28+
29+
[project.urls]
30+
"Source code" = "https://github.com/danthedeckie/simpleeval"
31+
32+
[pycodestyle]
33+
max_line_length = 99
34+
135
[build-system]
2-
requires = ["setuptools>=30.3.0", "wheel"]
3-
build-backend = "setuptools.build_meta"
36+
requires = ["hatchling"]
37+
build-backend = "hatchling.build"
38+
39+
[tool.hatch.build.targets.sdist]
40+
include = [
41+
"simpleeval.py",
42+
"test_simpleeval.py",
43+
"README.rst",
44+
"LICENCE",
45+
]
46+
47+
[tool.hatch.version]
48+
path = "simpleeval.py"
49+
50+
[tool.hatch.envs.hatch-test]
51+
default-args = ["test_simpleeval.py"]
452

553
[tool.black]
654
line-length = 99
@@ -29,5 +77,4 @@ disable = [
2977
"useless-object-inheritance",
3078
"unnecessary-pass",
3179
"bad-super-call",
32-
]
33-
80+
]

requirements/dev.txt

+2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
ruff==0.6.9
22
mypy==1.11.2
3+
hatch==1.12.0
4+
twine==5.1.1

setup.cfg

-24
This file was deleted.

0 commit comments

Comments
 (0)