File tree Expand file tree Collapse file tree 3 files changed +35
-26
lines changed Expand file tree Collapse file tree 3 files changed +35
-26
lines changed Original file line number Diff line number Diff line change 2020 pip install -r requirements.txt
2121 pip install -r docs/requirements.txt
2222 - name : Sphinx Api Docs
23- run : sphinx-apidoc -F -H "App Store Server Library" -A "Apple Inc." -V "0.2.1" -e -a -o _staging . tests setup.py
23+ run : sphinx-apidoc -F -H "App Store Server Library" -A "Apple Inc." -V "0.2.1" -e -a -o _staging . tests pyproject.toml
2424 - name : Spinx build
2525 run : sphinx-build -b html _staging _build
2626 - name : Upload docs
Original file line number Diff line number Diff line change 1+ # Copyright (c) 2025 Apple Inc. Licensed under MIT License.
2+
3+ [build-system ]
4+ requires = [" setuptools>=61.0" , " wheel" ]
5+ build-backend = " setuptools.build_meta"
6+
7+ [project ]
8+ name = " app-store-server-library"
9+ version = " 1.9.0"
10+ description = " The App Store Server Library"
11+ readme = {file = " README.md" , content-type = " text/markdown" }
12+ license = {text = " MIT" }
13+ requires-python = " >=3.7, <4"
14+ classifiers = [
15+ " License :: OSI Approved :: MIT License"
16+ ]
17+ dependencies = [
18+ " attrs>=21.3.0" ,
19+ " PyJWT>=2.6.0,<3" ,
20+ " requests>=2.28.0,<3" ,
21+ " cryptography>=40.0.0" ,
22+ " pyOpenSSL>=23.1.1" ,
23+ " asn1==2.8.0" ,
24+ " cattrs>=23.1.2" ,
25+ ]
26+
27+ [project .optional-dependencies ]
28+ async = [" httpx" ]
29+
30+ [tool .setuptools ]
31+ packages = {find = {exclude = [" tests" ]}}
32+
33+ [tool .setuptools .package-data ]
34+ appstoreserverlibrary = [" py.typed" ]
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments