Skip to content

Commit ff256a2

Browse files
committed
Update project layout
1 parent ae2b10d commit ff256a2

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
[tool.poetry]
22
name = "quickchart.io"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
description = "A client for quickchart.io, a service that generates static chart images"
5+
keywords = ["chart api", "chart image", "charts"]
56
authors = ["Ian Webster <ianw_pypi@ianww.com>"]
67
license = "MIT"
78
packages = [
8-
{ include = "*.py" },
9+
{ include = "quickchart" },
910
]
1011

1112
[tool.poetry.dependencies]

quickchart.py renamed to quickchart/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,5 +71,5 @@ def get_bytes(self):
7171
def to_file(self, path):
7272
content = self.get_bytes()
7373
with open(path, 'wb') as f:
74-
f.write(response.content)
74+
f.write(content)
7575

0 commit comments

Comments
 (0)