Skip to content

Commit 8a3e883

Browse files
committed
proper flit file, and inits
1 parent 7cad8b5 commit 8a3e883

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

pyproject.toml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,15 @@ build-backend = "flit_core.buildapi"
44

55
[tool.flit.metadata]
66
module = "stitchclient"
7-
author = "Jonathan Drake"
8-
author-email = "jdrake@narrativescience.com"
7+
author = "Stitch"
8+
author-email = "support@stitchdata.com"
99
home-page = "https://github.com/stitchdata/python-stitch-client"
1010
description-file = "README.md"
11+
requires = [
12+
"python-dateutil==2.6.1",
13+
"msgpack-python",
14+
"requests==2.24.0",
15+
]
1116
classifiers = ['Programming Language :: Python :: 3 :: Only']
1217
requires-python = ">=3.5.7,<4"
1318

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import subprocess
55

66
setup(name="stitchclient",
7-
version="0.8.0",
7+
version="0.8.0.post1",
88
description="A Stitch API client for Python",
99
author="Stitch",
1010
author_email="[email protected]",

stitchclient/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Library for working with the stitch client in python"""
22

3-
__version__ = "0.8.0"
3+
__version__ = "0.8.0.post1"

0 commit comments

Comments
 (0)