File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change 10
10
11
11
from setuptools import setup , find_packages
12
12
13
+ with open ("README.md" , "r" ) as fh :
14
+ long_description = fh .read ()
15
+
13
16
setup (
14
17
name = "cs3client" ,
15
- version = "0.1" ,
16
18
author = "Rasmus Welander, Diogo Castro, Giuseppe Lo Presti" ,
17
19
package_dir = {"" : "src" },
18
20
packages = find_packages (where = "src" ),
19
21
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" ,
20
26
install_requires = [
21
27
"grpcio>=1.47.0" ,
22
28
"grpcio-tools>=1.47.0" ,
23
29
"pyOpenSSL" ,
24
30
"requests" ,
25
- "cs3apis>=0.1.dev101 " ,
31
+ "cs3apis" ,
26
32
"PyJWT" ,
27
33
"protobuf" ,
28
34
"cryptography" ,
You can’t perform that action at this time.
0 commit comments