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 1010
1111from setuptools import setup , find_packages
1212
13+ with open ("README.md" , "r" ) as fh :
14+ long_description = fh .read ()
15+
1316setup (
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" ,
You can’t perform that action at this time.
0 commit comments