Skip to content

Commit

Permalink
churn: fix build workflow, update project decriptor
Browse files Browse the repository at this point in the history
  • Loading branch information
netomi committed Jan 23, 2024
1 parent 76c62d6 commit a5add77
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
key: venv-${{ matrix.python-version }}-${{ hashFiles('poetry.lock') }}
- name: Install dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: poetry install -v -E all
run: poetry install -v --only-root

# Run tests
- name: Run tests
Expand Down
47 changes: 38 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,39 @@
[tool.poetry]
name = "otterdog"
version = "0.4.0.dev"
description = "Tool to manage GitHub organizations and their repositories."
authors = ["Thomas Neidhart <[email protected]>"]
readme = "README.md"
packages = [{include = "otterdog"}]
name = "otterdog"
version = "0.4.0.dev"
description = "Tool to manage GitHub organizations and their repositories."
authors = ["Thomas Neidhart <[email protected]>"]
readme = "README.md"
license = "Eclipse Public License - v2.0"
homepage = "https://github.com/eclipse-csi/otterdog"
repository = "https://github.com/eclipse-csi/otterdog"
documentation = "https://otterdog.readthedocs.io"
keywords = ["infrastructure-as-code", "supply-chain-security", "github", "gitops"]

packages = [
{ include = "otterdog" }
]

include = [
"CHANGELOG.md"
]

classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Eclipse Public License 2.0 (EPL-2.0)",
"Operating System :: Unix",
"Operating System :: POSIX",
"Operating System :: MacOS",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Environment :: Console",
"Topic :: System :: Systems Administration",
"Typing :: Typed",
]

[tool.poetry.dependencies]
python = "^3.10"
Expand Down Expand Up @@ -65,9 +94,9 @@ testpaths = ["tests"]
pythonpath = [".", "otterdog"]

[tool.black]
color = true
line-length = 120
target-version = ['py310']
color = true
line-length = 120
target-version = ['py310']

[tool.isort]
profile = "black"
Expand Down

0 comments on commit a5add77

Please sign in to comment.