FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
replicate-python/setup.py at main · Wheest/replicate-python · GitHub
Wheest
/
replicate-python
Public
forked from
replicate/replicate-python
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
replicate-python
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
27 lines (22 loc) · 744 Bytes
Breadcrumbs
replicate-python
/
setup.py
Copy path
File metadata and controls
27 lines (22 loc) · 744 Bytes
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
# !/usr/bin/env python
from
pathlib
import
Path
from
setuptools
import
setup
this_directory
=
Path
(
__file__
).
parent
long_description
=
(
this_directory
/
"README.md"
).
read_text
()
# setup.py cannot safely import files, so read and exec to get the version
__version__
=
None
exec
(
open
(
"replicate/__about__.py"
).
read
())
setup
(
name
=
"replicate"
,
packages
=
[
"replicate"
],
version
=
__version__
,
description
=
"Python client for Replicate"
,
long_description
=
long_description
,
long_description_content_type
=
"text/markdown"
,
author
=
"Replicate, Inc."
,
license
=
"BSD"
,
url
=
"https://github.com/replicate/replicate-python"
,
python_requires
=
">=3.6"
,
install_requires
=
[
"requests"
,
"pydantic"
],
classifiers
=
[],
)
Back
|
FazBrowse Home
|
New Git URL