Skip to content

Commit

Permalink
Replace template information
Browse files Browse the repository at this point in the history
  • Loading branch information
ibevers committed Oct 18, 2024
1 parent ffc8264 commit ca79e2d
Show file tree
Hide file tree
Showing 19 changed files with 621 additions and 152 deletions.
2 changes: 1 addition & 1 deletion .autorc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"onlyPublishWithReleaseLabel": true,
"baseBranch": "main",
"author": "bot <YOUR_EMAIL>",
"author": "bot <[email protected]>",
"noVersionPrefix": true,
"plugins": ["git-tag"]
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
609 changes: 609 additions & 0 deletions poetry.lock

Large diffs are not rendered by default.

20 changes: 10 additions & 10 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
[tool.poetry]
name = "YOUR_PACKAGE_NAME"
name = "senseable-agents"
version = "0.0.1"
description = "YOUR_PACKAGE_NAME is a Python package for doing incredible stuff."
description = "senseable-agents is a Python package for doing incredible stuff."
authors = [
"YOUR_GITHUB_NICKNAME <YOUR_EMAIL>",
"ibevers <[email protected]>",
]
maintainers = [
"YOUR_GITHUB_NICKNAME <YOUR_EMAIL>",
"ibevers <[email protected]>",
]
license = "Apache-2.0"
readme = "README.md"
homepage = "YOUR_PACKAGE_REPO"
repository = "YOUR_PACKAGE_REPO"
documentation = "https://YOUR_GITHUB_NICKNAME.github.io/YOUR_PACKAGE_NAME"
homepage = "https://github.com/sensein/senseable-agents"
repository = "https://github.com/sensein/senseable-agents"
documentation = "https://sensein.github.io/senseable-agents"
keywords = ["python", "package", "template"]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent"
]
packages = [{include = "YOUR_PACKAGE_NAME", from = "src"}]
packages = [{include = "senseable-agents", from = "src"}]

[tool.poetry.dependencies]
python = "^3.10"
Expand Down Expand Up @@ -97,7 +97,7 @@ convention = "google"
"src/tests/**/*.py" = []

[tool.poetry.scripts]
YOUR_PACKAGE_NAME-cli = "YOUR_PACKAGE_NAME.cli:main"
senseable-agents-cli = "senseable-agents.cli:main"

[tool.ruff.format]
quote-style = "double"
Expand All @@ -106,7 +106,7 @@ skip-magic-trailing-comma = false
line-ending = "auto"

[tool.poetry-dynamic-versioning]
enable = true
enable = false
vcs = "git"
style = "pep440"
bump = true
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/tests/test_app.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Tests for the app hello_world function."""
from _pytest.capture import CaptureFixture

from YOUR_PACKAGE_NAME.app import hello_world
from senseable-agents.app import hello_world


def test_hello_world(capsys: CaptureFixture) -> None:
Expand Down
140 changes: 0 additions & 140 deletions template_setup.py

This file was deleted.

0 comments on commit ca79e2d

Please sign in to comment.