Skip to content

Commit

Permalink
fix setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
dangost committed Feb 7, 2023
1 parent ce9c3ad commit c292272
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pypi-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run: pipenv install --dev
- name: Publish package
run: |
pipenv run pipenv-setup sync
pipenv run pipenv sync
pipenv run python setup.py sdist bdist_wheel
pipenv run twine upload -u __token__ -p ${{secrets.PYPI_PUBLISH_TOKEN}} dist/*
env:
Expand Down
8 changes: 6 additions & 2 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,18 @@ verify_ssl = true
name = "pypi"

[packages]
certifi = "==2022.12.7"
certifi = "==2022.6.15.1"
six = ">=1.10"
python-dateutil = ">=2.5.3"
urllib3 = ">=1.15.1"
vistir = ">=0.4.0, <=0.6.1"

[dev-packages]
setuptools = ">=21.0.0"
pipenv-setup = "*"
wheel = "*"
twine = "*"
chardet = "*"
chardet = "*"

[requires]
python_version = "3.8"
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
url="https://mobile.regulaforensics.com",
keywords=["face recognition", "facesdk", "regulaforensics", "regula"],
install_requires=[
"certifi==2022.12.7",
"python-dateutil==2.8.1",
"six==1.15.0",
"urllib3==1.26.5",
"certifi==2022.6.15.1",
"six>=1.10",
"python-dateutil>=2.5.3",
"urllib3>=1.15.1"
],
packages=find_packages(exclude=["test", "tests", "example"]),
include_package_data=True,
Expand Down

0 comments on commit c292272

Please sign in to comment.