File tree Expand file tree Collapse file tree 3 files changed +29
-4
lines changed Expand file tree Collapse file tree 3 files changed +29
-4
lines changed Original file line number Diff line number Diff line change 2020 with :
2121 python-version : ${{ matrix.python-version }}
2222 cache : pip
23- cache-dependency-path : setup.py
23+ cache-dependency-path : pyproject.toml
2424 - name : Install dependencies
2525 run : |
2626 pip install '.[test]'
3737 with :
3838 python-version : " 3.11"
3939 cache : pip
40- cache-dependency-path : setup.py
40+ cache-dependency-path : pyproject.toml
4141 - name : Install dependencies
4242 run : |
4343 pip install setuptools wheel twine build
4848 run : |
4949 python -m build
5050 twine upload dist/*
51-
Original file line number Diff line number Diff line change 1818 with :
1919 python-version : ${{ matrix.python-version }}
2020 cache : pip
21- cache-dependency-path : setup.py
21+ cache-dependency-path : pyproject.toml
2222 - name : Install dependencies
2323 run : |
2424 pip install '.[test]'
Original file line number Diff line number Diff line change 1+ [project ]
2+ name = " pocket-to-sqlite"
3+ version = " 0.2.3"
4+ description = " Create a SQLite database containing data from your Pocket account"
5+ readme = " README.md"
6+ authors = [{name = " Simon Willison" }]
7+ license = {text = " Apache-2.0" }
8+ classifiers = [
9+ " License :: OSI Approved :: Apache Software License"
10+ ]
11+ dependencies = [
12+ " sqlite-utils>=2.4.4" ,
13+ " click" ,
14+ " requests"
15+ ]
16+ requires-python = " >3.7"
17+ scripts = {pocket-to-sqlite = " pocket_to_sqlite.cli:cli" }
18+
19+ [project .urls ]
20+ homepage = " https://github.com/dogsheep/pocket-to-sqlite"
21+ Changelog = " https://github.com/dogsheep/pocket-to-sqlite/releases"
22+ Issues = " https://github.com/dogsheep/pocket-to-sqlite/issues"
23+ CI = " https://github.com/dogsheep/pocket-to-sqlite/actions"
24+
25+ [project .optional-dependencies ]
26+ test = [" pytest" ]
You can’t perform that action at this time.
0 commit comments