Skip to content

Commit b1b8724

Browse files
committed
Fix creating distribution; fix license metadata
1 parent 00a26f9 commit b1b8724

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -302,11 +302,10 @@ jobs:
302302
pandoc --from=gfm --output=README.rst --to=rst README.md
303303
304304
# Install twine
305-
python -m pip install wheel twine
305+
python -m pip install wheel twine build
306306
307307
# Create packages to upload to PyPI
308-
python setup.py sdist
309-
python setup.py bdist_wheel
308+
python -m build
310309
311310
# Upload packages to PyPI
312311
twine upload dist/*

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ readme = "README.md"
1111
authors = [
1212
{ name = "Center for Reproducible Biomedical Modeling", email = "[email protected]" }
1313
]
14-
license = { text = "MIT" }
14+
license = "MIT"
1515
keywords = [
1616
"BioSimulators",
1717
"systems biology",
@@ -27,7 +27,6 @@ keywords = [
2727
classifiers = [
2828
"Development Status :: 3 - Alpha",
2929
"Intended Audience :: Science/Research",
30-
"License :: OSI Approved :: MIT License",
3130
"Topic :: Scientific/Engineering :: Bio-Informatics",
3231
]
3332

0 commit comments

Comments
 (0)