FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
sim/packages/python-sdk/setup.py at fix/self-host-setting · simstudioai/sim · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
simstudioai
/
sim
Public
Notifications
You must be signed in to change notification settings
Fork
3.8k
Star
29.5k
Code
Issues
119
Pull requests
175
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
sim
/
packages
/
python-sdk
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
51 lines (49 loc) · 1.63 KB
Breadcrumbs
sim
/
packages
/
python-sdk
/
setup.py
Copy path
File metadata and controls
51 lines (49 loc) · 1.63 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
50
51
from
setuptools
import
setup
,
find_packages
with
open
(
"README.md"
,
"r"
,
encoding
=
"utf-8"
)
as
fh
:
long_description
=
fh
.
read
()
setup
(
name
=
"simstudio-sdk"
,
version
=
"0.1.1"
,
author
=
"Sim"
,
author_email
=
"help@sim.ai"
,
description
=
"Sim SDK - Execute workflows programmatically"
,
long_description
=
long_description
,
long_description_content_type
=
"text/markdown"
,
url
=
"https://github.com/simstudioai/sim"
,
packages
=
find_packages
(),
classifiers
=
[
"Development Status :: 4 - Beta"
,
"Intended Audience :: Developers"
,
"License :: OSI Approved :: Apache Software License"
,
"Operating System :: OS Independent"
,
"Programming Language :: Python :: 3"
,
"Programming Language :: Python :: 3.8"
,
"Programming Language :: Python :: 3.9"
,
"Programming Language :: Python :: 3.10"
,
"Programming Language :: Python :: 3.11"
,
"Programming Language :: Python :: 3.12"
,
],
python_requires
=
">=3.8"
,
install_requires
=
[
"requests>=2.25.0"
,
"typing-extensions>=4.0.0; python_version<'3.10'"
,
],
extras_require
=
{
"dev"
: [
"pytest>=6.0.0"
,
"pytest-asyncio>=0.18.0"
,
"black>=22.0.0"
,
"flake8>=4.0.0"
,
"mypy>=0.910"
,
],
"test"
: [
"pytest>=6.0.0"
,
],
},
keywords
=
[
"simstudio"
,
"ai"
,
"workflow"
,
"sdk"
,
"api"
,
"automation"
],
project_urls
=
{
"Bug Reports"
:
"https://github.com/simstudioai/sim/issues"
,
"Source"
:
"https://github.com/simstudioai/sim"
,
"Documentation"
:
"https://docs.sim.ai"
,
},
)
Back
|
FazBrowse Home
|
New Git URL