-
-
Notifications
You must be signed in to change notification settings - Fork 135
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 #530 from Abdur-rahmaanJ/chore/convert-to-pyprojec…
…t.toml Chore/convert to pyproject.toml
- Loading branch information
Showing
6 changed files
with
64 additions
and
162 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,40 @@ | ||
[tool.commitizen] | ||
name = "cz_conventional_commits" | ||
version = "4.1.0" | ||
tag_format = "v$major.$minor.$patch$prerelease" | ||
version_files = [ | ||
"pyproject.toml:version" | ||
[project] | ||
name = "shopcube" | ||
version = "4.5.0" | ||
description = "E-commerce solution" | ||
readme = "README.md" | ||
license = {text = "MIT"} | ||
authors = [ | ||
{name = "Abdur-Rahmaan Janhangeer & contributors", email = "[email protected]"} | ||
] | ||
style = [ | ||
["qmark", "fg:#ff9d00 bold"], | ||
["question", "bold"], | ||
["answer", "fg:#ff9d00 bold"], | ||
["pointer", "fg:#ff9d00 bold"], | ||
["highlighted", "fg:#ff9d00 bold"], | ||
["selected", "fg:#cc5454"], | ||
["separator", "fg:#cc5454"], | ||
["instruction", ""], | ||
["text", ""], | ||
["disabled", "fg:#858585 italic"] | ||
keywords = ["flask", "pos", "management", "shop", "ecommerce", "cms", "erp", "e-commerce"] | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
] | ||
dynamic = ["dependencies"] | ||
|
||
[tool.setuptools.dynamic] | ||
dependencies = {file = ["reqs/app.txt"]} | ||
|
||
[project.urls] | ||
"Bug Reports" = "https://github.com/Abdur-RahmaanJ/shopcube/issues" | ||
"Source" = "https://github.com/Abdur-RahmaanJ/shopcube/" | ||
|
||
[tool.isort] | ||
profile = "black" | ||
multi_line_output = 3 | ||
include_trailing_comma = true | ||
force_grid_wrap = 0 | ||
use_parentheses = true | ||
line_length = 88 | ||
force_single_line = true | ||
skip = ["db-utils", "venv"] | ||
|
||
[options] | ||
include_package_data = true | ||
|
||
[tool.setuptools.packages.find] | ||
where = ["src"] | ||
|
||
|
||
[project.scripts] | ||
shopcube = "shopcube.__main__:main" |
Binary file not shown.
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