Skip to content

Commit

Permalink
Merge pull request #87 from george0st/transaction
Browse files Browse the repository at this point in the history
Tune publishing
  • Loading branch information
george0st authored Dec 21, 2023
2 parents 8bd7247 + 8a7f442 commit 2dd32cf
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 17 deletions.
4 changes: 4 additions & 0 deletions publish.bat
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,7 @@ python -m build --wheel

rem twine upload is supported
twine upload dist/* --verbose -u__token__

rmdir /S /Q dist
rmdir /S /Q build
rmdir /S /Q qgate.egg-info
17 changes: 1 addition & 16 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,6 @@ classifiers = [ # Optional
"Topic :: Software Development :: Libraries",
]

#[project]
#name = "my_package"
#authors = [
# {name = "Josiah Carberry", email = "[email protected]"},
#]
[project.urls] # Optional
homepage='https://github.com/george0st/qgate-sln-mlrun/'
repository='https://pypi.org/project/qgate-sln-mlrun/'
Expand All @@ -55,18 +50,8 @@ repository='https://pypi.org/project/qgate-sln-mlrun/'

[tool.setuptools]
packages = ["qgate_sln_mlrun", "qgate_sln_mlrun.ts", "qgate_sln_mlrun.templates"]
include-package-data = true
include-package-data = true # true - add other data such as *.txt, *.html, etc. under all packages

# it has relation only to --wheel
#[tool.setuptools.packages.find]
#where = ["qgate_sln_mlrun"]
##include = ["qgate_sln_mlrun"]
##exclude = ["input*", "output*", "tests*"]

#[tool.setuptools.package-data]
#templates = ["*.txt", "*.html"]
#qgate_sln_mlrun.templates = ["*.txt", "*.html"]
##"*" = ["*.txt", "*.html"]

[build-system]
requires = ["setuptools>=68", "wheel"]
Expand Down
2 changes: 1 addition & 1 deletion qgate_sln_mlrun/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Store the version here so:

__version__ = '0.1.1-rc2'
__version__ = '0.1.1'

0 comments on commit 2dd32cf

Please sign in to comment.