We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0156ab4 commit e6d264cCopy full SHA for e6d264c
setup.py
@@ -1,19 +1,18 @@
1
#!/usr/bin/env python
2
3
from setuptools import find_packages, setup
4
-from jigsawstack.version import get_version
5
6
install_requires = open("requirements.txt").readlines()
7
8
setup(
9
name="jigsawstack",
10
- version=get_version(),
+ version="0.1.2",
11
description="JigsawStack Python SDK",
12
long_description=open("README.md", encoding="utf8").read(),
13
long_description_content_type="text/markdown",
14
author="Narcisse Egonu",
15
author_email="hello@jigsawstack.com",
16
- url="https://github.com/jigsawstack/jigsawstack-python",
+ url="https://github.com/jigsawstack/jigsawstack-py",
17
packages=find_packages(include=["jigsawstack"]),
18
install_requires=install_requires,
19
zip_safe=False,
0 commit comments