Skip to content

Commit

Permalink
Merge pull request #25 from touero/develop
Browse files Browse the repository at this point in the history
Fix pyproject error
  • Loading branch information
touero authored Nov 29, 2024
2 parents 6257689 + 301d76c commit 48d1711
Showing 1 changed file with 17 additions and 11 deletions.
28 changes: 17 additions & 11 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
requires = ["setuptools>=68.2.0", "wheel>=0.42.0"]
build-backend = "setuptools.build_meta"


[project]
name = "easier-docker"
version = "2.2.5"
Expand All @@ -13,21 +12,28 @@ license = {text = "Apache License 2.0"}
authors = [
{name = "EnSong Wei", email = "[email protected]"}
]

keywords = ["easy","docker","python","docker sdk","python sdk"]
classifiers = [
"License :: OSI Approved :: Apache Software 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"
]
dependencies = [
"docker~=7.1.0",
"setuptools~=68.2.0",
"PyYAML~=6.0.1",
"wheel~=0.42.0",
"twine~=4.0.2",
"coverage==7.4.4"
]

[project.urls]
Homepage = "https://github.com/touero/easier-docker"
"Bug Reports" = "https://github.com/touero/easier-docker/issues"
Source = "https://github.com/touero/easier-docker"


keywords = "easy, docker, python-docker-sdk, python-docker"


classifiers = "License :: OSI Approved :: Apache Software 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"


dependencies = "docker~=7.1.0, setuptools~=68.2.0, PyYAML~=6.0.1, wheel~=0.42.0, twine~=4.0.2, coverage==7.4.4"

[project.scripts]
easier-docker = "easierdocker.__main__:main"

0 comments on commit 48d1711

Please sign in to comment.