Skip to content

Commit 663a587

Browse files
committed
update pyproject.toml
1 parent f28321b commit 663a587

File tree

6 files changed

+29
-120
lines changed

6 files changed

+29
-120
lines changed
File renamed without changes.

.github/workflows/publish-to-test-pypi.yaml

-117
This file was deleted.

.github/workflows/release.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
runs-on: ubuntu-latest
3737
environment:
3838
name: pypi
39-
url: https://pypi.org/p/<package-name> # Replace <package-name> with your PyPI project name
39+
url: https://pypi.org/p/asimtools # Replace <package-name> with your PyPI project name
4040
permissions:
4141
id-token: write # IMPORTANT: mandatory for trusted publishing
4242

@@ -100,7 +100,7 @@ jobs:
100100

101101
environment:
102102
name: testpypi
103-
url: https://test.pypi.org/p/<package-name>
103+
url: https://test.pypi.org/p/asimtools
104104

105105
permissions:
106106
id-token: write # IMPORTANT: mandatory for trusted publishing
File renamed without changes.

.github/workflows/tests.yml .github/workflows/tests.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This workflow will install Python dependencies, run tests and lint with a single version of Python
22
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
33

4-
name: Python application
4+
name: Run Tests
55

66
on:
77
push:

pyproject.toml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
[build-system]
2+
requires = ["hatchling"]
3+
build-backend = "hatchling.build"
4+
5+
[project]
6+
name = "asimtools"
7+
version = "0.0.1"
8+
authors = [
9+
{ name="Keith Phuthi", email="[email protected]" },
10+
]
11+
maintainers = [
12+
{ name="Keith Phuthi", email="[email protected]" },
13+
]
14+
description = "A lightweight python package for managing and running atomic simulation workflows"
15+
readme = "README.md"
16+
requires-python = ">=3.9"
17+
classifiers = [
18+
"Programming Language :: Python :: 3",
19+
"License :: OSI Approved :: MIT License",
20+
"Operating System :: MacOS",
21+
"Operating System :: POSIX :: Linux"
22+
]
23+
24+
[project.urls]
25+
Homepage = "https://github.com/BattModels/asimtools"
26+
Issues = "https://github.com/BattModels/asimtools/issues"

0 commit comments

Comments
 (0)