Skip to content

Commit df65bbb

Browse files
committed
Update install instructions to pypi
1 parent c64b7cf commit df65bbb

3 files changed

Lines changed: 12 additions & 3 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
__pycache__
44
.pytest_cache
55
.env
6+
dist/
67

78
# Claude
89
.claude/settings.local.json

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Python client library for [Diffbot](https://www.diffbot.com) APIs.
66
## Installation
77

88
```bash
9-
pip install git+https://github.com/diffbot/diffbot-python.git
9+
python3 -m pip install diffbot-python
1010
```
1111

1212
Or, for local development:

pyproject.toml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,18 @@ build-backend = "hatchling.build"
55
[project]
66
name = "diffbot-python"
77
version = "0.1.0"
8-
description = "Python client library for the Diffbot APIs"
8+
description = "Python client library for Diffbot APIs"
99
readme = "README.md"
1010
requires-python = ">=3.10"
11+
classifiers = [
12+
"Programming Language :: Python :: 3",
13+
"Operating System :: OS Independent",
14+
"Topic :: Software Development :: Libraries",
15+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
16+
"Topic :: Internet :: WWW/HTTP :: Indexing/Search"
17+
]
1118
license = "MIT"
19+
license-files = ["LICEN[CS]E*"]
1220
authors = [
1321
{ name = "Jerome Choo", email = "jerome@diffbot.com" },
1422
{ name = "Mike Tung", email = "miket@diffbot.com" }
@@ -37,4 +45,4 @@ packages = ["src/diffbot"]
3745

3846
[tool.pytest.ini_options]
3947
markers = ["live: marks tests as live integration tests requiring a real DIFFBOT_TOKEN"]
40-
addopts = "-m 'not live'"
48+
addopts = "-m 'not live'"

0 commit comments

Comments
 (0)