Skip to content

Commit

Permalink
Merge pull request #119 from HanslettTheDev/fix_deps
Browse files Browse the repository at this point in the history
Get all dependencies from the requirements.txt file
  • Loading branch information
reingart authored Oct 6, 2023
2 parents 3715409 + 017345a commit c76424a
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,26 @@
author_email="reingart@gmail.com",
url="https://github.com/reingart/pyafipws",
license="LGPL-3.0-or-later",
install_requires=[
"httplib2==0.9.2;python_version <= '2.7'",
"httplib2>=0.20.4;python_version > '3'",
"pysimplesoap==1.08.14;python_version <= '2.7'",
"cryptography==3.3.2;python_version <= '2.7'",
"cryptography>=3.4.7;python_version > '3'",
"fpdf>=1.7.2",
"dbf>=0.88.019",
"Pillow>=2.0.0",
"tabulate>=0.8.5",
"certifi>=2020.4.5.1",
"qrcode>=6.1",
"future>=0.18.2",
],
dependency_links=[
"git+https://github.com/pysimplesoap/pysimplesoap.git@py311#pysimplesoap; python_version > '3'",
],
extras_require={
"opt": ["pywin32==304;sys_platform == 'win32' and python_version > '3'"]
},
options=opts,
data_files=data_files,
classifiers=[
Expand Down

0 comments on commit c76424a

Please sign in to comment.