Skip to content

Commit

Permalink
Fix release directions and license include.
Browse files Browse the repository at this point in the history
  • Loading branch information
jd-boyd committed Jan 9, 2024
1 parent 72422ca commit 8badc54
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
6 changes: 4 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,11 @@ Links:


Making a release
-------
----------------

1. `python ./setup.py sdist`
1. `python -m build`
1. `twine check dist/*`
1. `git tag v1.0.x`
1. `twine upload dist/*`


Expand Down
7 changes: 4 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools>=61.0"]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

[project]
Expand All @@ -13,7 +13,6 @@ authors = [
description = "S-expression parser for Python"
readme = "README.rst"
requires-python = ">=3.7"
license = {text = "BSD-2-Clause"}
classifiers = [
"Development Status :: 3 - Alpha",
'License :: OSI Approved :: BSD License',
Expand All @@ -24,10 +23,12 @@ classifiers = [
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
"Programming Language :: Lisp",
"Programming Language :: Emacs-Lisp",
]
dynamic = ["license", "keywords"]
dynamic = ["keywords"]
license = {file = "LICENSE"}

[project.urls]
"Homepage" = "https://github.com/jd-boyd/sexpdata"
Expand Down

0 comments on commit 8badc54

Please sign in to comment.