Skip to content

Commit 7a2e016

Browse files
committed
adding flit
1 parent 981049c commit 7a2e016

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

pyproject.toml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
[build-system]
2+
requires = ["flit_core >=2,<3"]
3+
build-backend = "flit_core.buildapi"
4+
5+
[tool.flit.metadata]
6+
module = "stitchclient"
7+
author = "Jonathan Drake"
8+
author-email = "[email protected]"
9+
home-page = "https://github.com/NarrativeScience/python-stitch-client"
10+
description-file = "README.md"
11+
requires-python = ">=3.6,<4"
12+
13+
[tool.flit.sdist]
14+
include = ["LICENSE"]
15+
exclude = ["tests/"]

stitchclient/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
"""Library for working with the stitch client in python"""
2+
3+
__version__ = "0.8.0"

0 commit comments

Comments
 (0)