-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (43 loc) · 1.37 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
"""
setup.py
setup file for the cs3client package.
Authors: Rasmus Welander, Diogo Castro, Giuseppe Lo Presti.
Last updated: 30/08/2024
"""
from setuptools import setup, find_packages
import os
with open("README.md", "r") as fh:
long_description = fh.read()
version = os.getenv("PACKAGE_VERSION", "0.0.0")
setup(
name="cs3client",
version=version,
author="Rasmus Welander, Diogo Castro, Giuseppe Lo Presti",
description="CS3 client for Python",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(exclude=['tests*']),
url="https://github.com/cs3org/cs3-python-client",
install_requires=[
"grpcio>=1.47.0",
"grpcio-tools>=1.47.0",
"pyOpenSSL",
"requests",
"cs3apis",
"PyJWT",
"protobuf",
"cryptography",
],
license="Apache 2.0",
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
],
)