Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci-release-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
pip install -r requirements.txt
pip install -r docs/requirements.txt
- name: Sphinx Api Docs
run: sphinx-apidoc -F -H "App Store Server Library" -A "Apple Inc." -V "0.2.1" -e -a -o _staging . tests setup.py
run: sphinx-apidoc -F -H "App Store Server Library" -A "Apple Inc." -V "0.2.1" -e -a -o _staging . tests pyproject.toml
- name: Spinx build
run: sphinx-build -b html _staging _build
- name: Upload docs
Expand Down
34 changes: 34 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Copyright (c) 2025 Apple Inc. Licensed under MIT License.

[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "app-store-server-library"
version = "1.9.0"
description = "The App Store Server Library"
readme = {file = "README.md", content-type = "text/markdown"}
license = {text = "MIT"}
requires-python = ">=3.7, <4"
classifiers = [
"License :: OSI Approved :: MIT License"
]
dependencies = [
"attrs>=21.3.0",
"PyJWT>=2.6.0,<3",
"requests>=2.28.0,<3",
"cryptography>=40.0.0",
"pyOpenSSL>=23.1.1",
"asn1==2.8.0",
"cattrs>=23.1.2",
]

[project.optional-dependencies]
async = ["httpx"]

[tool.setuptools]
packages = {find = {exclude = ["tests"]}}

[tool.setuptools.package-data]
appstoreserverlibrary = ["py.typed"]
25 changes: 0 additions & 25 deletions setup.py

This file was deleted.