Skip to content

Commit

Permalink
Merge pull request #82 from keitaroinc/bugfix-setuptools
Browse files Browse the repository at this point in the history
Remove unnecessary packages
  • Loading branch information
gocemitevski authored Apr 25, 2024
2 parents 793a693 + ff2fae4 commit 61fc511
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 49 deletions.
41 changes: 14 additions & 27 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,34 +1,21 @@
[tool.poetry]
name = "Enabler"
version = "0.1"
name = "Enabler" # noqa
version = "0.1" # noqa
description = "Enabler is a CLI application built for making life easier when working on microservice-based applications. Through this package we can create, edit and execute custom commands to configure microservices." # noqa
authors = ["Your Name <[email protected]>"] # noqa

[tool.poetry.dependencies]
python = "^3.7" # noqa
requests = "^2.31.0" # noqa
flask = "^3.0.2" # noqa
flask-sqlalchemy = "^3.1.0" # noqa
click = "^7.1.1" # noqa
click-log = "^0.3.2" # noqa
click-spinner = "^0.1.8" # noqa
cryptography = "^42.0.5" # noqa
docker = "^4.2.0" # noqa
docker-compose = "^1.29.2" # noqa
docker-py = "^1.10.6" # noqa
docker-pycreds = "^0.4.0" # noqa
dockerpty = "^0.4.1" # noqa
click = "7.1.1" # noqa
click-log = "0.3.2" # noqa
click-spinner = "0.1.8" # noqa
docker = "4.2.0" # noqa
gitpython = "3.1.41" # noqa
paramiko = "^2.7.1" # noqa
semver = "^2.9.1" # noqa
cryptography = "^2.9.1" # noqa
flake8 = "^7.0.0" # noqa
itsdangerous = "^2.1.2" # noqa
gitpython = "^3.1.37" # noqa
markupsafe = "^2.1.5" # noqa
paramiko = "^3.4.0" # noqa
pycparser = "^2.21" # noqa
semver = "^3.0.2" # noqa
setuptools = "^44.1.0" # noqa
smmap = "^5.0.1" # noqa
sqlalchemy = "^2.0.16" # noqa
werkzeug = "^3.0.1" # noqa

[build-system]
requires = ["backports.ssl-match-hostname>=3.5", "ipaddress>=1.0.16", "cffi>=1.16.0", "chardet>=4.0.0", "charset-normalizer>=3.3.2", "pip", "setuptools"] # noqa
build-backend = "poetry.core.masonry.api" # noqa
requires = ["poetry-core>=1.0.0"] # noqa
build-backend = "poetry.core.masonry.api" # noqa

31 changes: 9 additions & 22 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,22 +1,9 @@
flask==3.0.2
flask-sqlalchemy==3.1.0
click==7.1.1
click-log==0.3.2
click-spinner==0.1.8
cryptography==42.0.5
docker==4.2.0
docker-compose==1.29.2
docker-py==1.10.6
docker-pycreds==0.4.0
dockerpty==0.4.1
flake8==7.0.0
itsdangerous==2.1.2
gitpython==3.1.37
markupsafe==2.1.5
paramiko==3.4.0
pycparser==2.21
semver==3.0.2
setuptools==44.1.0
smmap==5.0.1
sqlalchemy==2.0.16
werkzeug3.0.1
click == 7.1.1
click-log == 0.3.2
click-spinner == 0.1.8
docker == 4.2.0
gitpython == 3.1.41
paramiko >= 2.7.1
semver >= 2.9.1
cryptography >= 2.9.1
flake8 >= 7.0.0

0 comments on commit 61fc511

Please sign in to comment.