Skip to content

Commit 4380c4f

Browse files
committed
fix: Fix warning
1 parent 2a9911d commit 4380c4f

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ jobs:
199199
- name: Upload sdist
200200
uses: actions/upload-artifact@v4
201201
with:
202-
name: wheels
202+
name: wheels-sdist
203203
path: dist
204204

205205
release:

pyproject.toml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,14 @@ maintainers = [
2020
{name = "Gavin Peacock", email = "[email protected]"}
2121
]
2222
urls = {homepage = "https://contentauthenticity.org", repository = "https://github.com/contentauth/c2pa-python"}
23+
dependencies = [
24+
"wheel>=0.41.2",
25+
"setuptools>=68.0.0",
26+
"toml>=0.10.2",
27+
"pytest>=7.4.0",
28+
"cryptography>=41.0.0",
29+
"requests>=2.0.0"
30+
]
2331

2432
[project.optional-dependencies]
2533
test = [

setup.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -202,9 +202,4 @@ def find_available_platforms():
202202
long_description=open("README.md").read(),
203203
long_description_content_type="text/markdown",
204204
python_requires=">=3.7",
205-
install_requires=[
206-
line.strip()
207-
for line in open("requirements.txt")
208-
if line.strip() and not line.startswith("#")
209-
],
210205
)

0 commit comments

Comments
 (0)