Skip to content

Commit

Permalink
New Structure, More Languages (issue #1)
Browse files Browse the repository at this point in the history
  • Loading branch information
mariofix committed May 8, 2023
1 parent a8b7189 commit 8b3cdd9
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 10 deletions.
3 changes: 0 additions & 3 deletions __init__.py

This file was deleted.

30 changes: 23 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,24 @@
[tool.poetry]
name = "thankyou"
version = "0.0.2"
description = "Python module to print Thank You in every known language."
authors = ["Mario Hernandez <mariofix@pm.me>"]
version = "0.0.3"
description = "Print \"Thank You\" in every known language"
authors = [
"Mario Hernandez <mariofix@proton.me>"
]
license = "MIT"
readme = "README.md"
repository = "https://github.com/mariofix/thankyou"
homepage = "https://mariofix.github.io/thankyou"
keywords = [
"thanks",
"library",
"thank"
]
packages = [
{ include = "thankyou" }
]
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand All @@ -18,9 +28,15 @@ classifiers=[
]

[tool.poetry.dependencies]
python = "^3.6"
python = "^3.8"

[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
flake8 = "^6.0.0"

[tool.poetry.scripts]
thanks = 'thankyou:give_thanks'

[build-system]
requires = ["poetry-core>=1.0.0"]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
3 changes: 3 additions & 0 deletions thankyou/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from .thankyou import give_thanks

__all__ = ["give_thanks"]
File renamed without changes.

0 comments on commit 8b3cdd9

Please sign in to comment.