-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replaced setup.py with pyproject.toml (#72)
* - Replaced setup.py with pyproject.toml - Modified build instruction in DEPLOY.md file Signed-off-by: Saad Mohsin Khan <[email protected]> * Update build.yml Changed build command. * Update build.yml Added command to install build --------- Signed-off-by: Saad Mohsin Khan <[email protected]>
- Loading branch information
Showing
4 changed files
with
53 additions
and
103 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
[build-system] | ||
requires = ["setuptools","twine", "wheel","efficient_apriori"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "efficient_apriori" | ||
dynamic = ["readme","dependencies","version"] | ||
description = " An efficient Python implementation of the Apriori algorithm." | ||
license = {file = "LICENSE"} | ||
authors = [ | ||
{name = "tommyod", email = "[email protected]"}, | ||
] | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"License :: OSI Approved :: MIT License", | ||
"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", | ||
] | ||
requires-python = ">=3.7" | ||
|
||
[project.urls] | ||
Source = "https://github.com/tommyod/Efficient-Apriori" | ||
Repository = "https://github.com/tommyod/Efficient-Apriori.git" | ||
|
||
[tool.setuptools.dynamic] | ||
version = {attr = "efficient_apriori.__version__"} | ||
readme = { file = "README.md", content-type = "text/markdown"} | ||
dependencies = {file = ["requirements.txt"]} | ||
|
||
[tool.setuptools.packages.find] | ||
where = ["efficient_apriori"] | ||
exclude = ["contrib", "docs", "tests"] | ||
namespaces = false | ||
|
||
[tool.setuptools.package-data] | ||
"*" = ["templates/*", "*.tex", "*.html"] | ||
|
||
[tool.pytest.ini_options] | ||
testpaths = ["efficient_apriori/tests"] | ||
addopts = "-v -ra -q" | ||
log_cli = true | ||
log_cli_level = "INFO" | ||
log_format = "%(asctime)s %(levelname)s %(message)s" | ||
log_date_format = "%Y-%m-%d %H:%M:%S" | ||
minversion = "3.6" | ||
filterwarnings = "ignore" | ||
norecursedirs = "docs" |