Skip to content

Commit

Permalink
Migrate to poetry
Browse files Browse the repository at this point in the history
  • Loading branch information
fabaff committed Mar 6, 2024
1 parent f27d765 commit 8d706ee
Show file tree
Hide file tree
Showing 2 changed files with 213 additions and 0 deletions.
174 changes: 174 additions & 0 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

39 changes: 39 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
[tool.poetry]
name = "past-time"
version = "0.3.0"
description = "Visualizer for the days of the year"
authors = ["Fabian Affolter <fabian@affolter-engineering.ch>"]
readme = "README.rst"
license="MIT"
keywords = ["time", "days", "year", "past"]
homepage = "https://github.com/audiusGmbH/audiness"
repository = "https://github.com/audiusGmbH/audiness"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Utilities",
]

[tool.poetry.dependencies]
python = "^3.10"
tqdm = "*"
click = "*"

[tool.poetry.group.test.dependencies]
pytest = "^8.0.2"
freezegun = "^1.4.0"

[tool.poetry.scripts]
past-time = "past_time.__init__:app"

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"

0 comments on commit 8d706ee

Please sign in to comment.