-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from SkwalExe/pypi-publishing
prepare package for pypi publishing
- Loading branch information
Showing
17 changed files
with
1,262 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
[build-system] | ||
requires = ["flit_core >=3.2,<4"] | ||
build-backend = "flit_core.buildapi" | ||
|
||
[project] | ||
name = "octologo" | ||
version = "3.0.0" | ||
description = "Simple program that generates a logo for your open source projects." | ||
authors = [{name = "Leopold Koprivnik", email = "[email protected]"}] | ||
readme = "README.md" | ||
license = {file = "LICENSE"} | ||
classifiers = ["License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)"] | ||
requires-python = ">=3.9" | ||
dependencies = [ | ||
"pillow==10.2.0", | ||
"inquirer==3.1.3", | ||
"toml==0.10.2", | ||
"importlib==1.0.4", | ||
"textual==0.38.1", | ||
"click-extra==4.7.2", | ||
"loguru==0.7.2" | ||
] | ||
|
||
[project.urls] | ||
Home = "https://github.com/SkwalExe/octo-logo" | ||
|
||
[project.scripts] | ||
octologo = "octologo.__main__:main" | ||
|
||
[tool.pdm] | ||
distribution = true | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
"""Simple program that generates a logo for your open source projects""" | ||
|
||
__version__ = "3.0.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
4 changes: 2 additions & 2 deletions
4
src/styles/underline_core.py → src/octologo/styles/underline_core.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters