-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (39 loc) · 1.24 KB
/
setup.py
File metadata and controls
42 lines (39 loc) · 1.24 KB
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
import re
from setuptools import setup, find_packages
with open('scalekit/_version.py') as f:
__version__ = re.search(r"^__version__ = ['\"]([^'\"]+)['\"]", f.read(), re.M).group(1)
setup(
name="scalekit-sdk-python",
version=__version__,
packages=find_packages(),
install_requires=[
"grpcio>=1.64.1",
"protobuf>=5.29.5,<7.0.0",
"google>=3.0",
"requests>=2.32.3",
"PyJWT>=2.12.0",
"cffi>=1.15.1",
"cryptography==46.0.6,<47",
"setuptools>=78.1.1,<81.0",
"grpcio-status>=1.64,<1.67",
"protoc-gen-openapiv2>=0.0.1",
"googleapis-common-protos>=1.72.0",
"deprecation>=2.1.0",
"python-dotenv~=1.1.1",
"Faker~=25.8.0",
"pydantic>=2.10.6",
"mcp>= 1.23.0",
],
url="https://github.com/scalekit-inc/scalekit-sdk-python",
license="MIT",
author="Team Scalekit",
author_email="support@scalekit.com",
description="Scalekit official Python SDK",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)