Skip to content

Commit 4a416da

Browse files
committed
Improved release, version is taken from tag
1 parent 951bc16 commit 4a416da

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

setup.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,25 @@
1010

1111
from setuptools import setup, find_packages
1212

13+
with open("README.md", "r") as fh:
14+
long_description = fh.read()
15+
1316
setup(
1417
name="cs3client",
15-
version="0.1",
1618
author="Rasmus Welander, Diogo Castro, Giuseppe Lo Presti",
1719
package_dir={"": "src"},
1820
packages=find_packages(where="src"),
1921
py_modules=["cs3client"],
22+
description="CS3 client for Python",
23+
long_description=long_description,
24+
long_description_content_type="text/markdown",
25+
url="https://github.com/cs3org/cs3-python-client",
2026
install_requires=[
2127
"grpcio>=1.47.0",
2228
"grpcio-tools>=1.47.0",
2329
"pyOpenSSL",
2430
"requests",
25-
"cs3apis>=0.1.dev101",
31+
"cs3apis",
2632
"PyJWT",
2733
"protobuf",
2834
"cryptography",

0 commit comments

Comments
 (0)