FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python/pyfaasm/setup.py at main · faasm/python · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
faasm
/
python
Public
Notifications
You must be signed in to change notification settings
Fork
3
Star
6
Code
Issues
1
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
python
/
pyfaasm
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
29 lines (23 loc) · 631 Bytes
Breadcrumbs
python
/
pyfaasm
/
setup.py
Copy path
File metadata and controls
29 lines (23 loc) · 631 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
28
29
try
:
from
setuptools
import
setup
except
ImportError
:
from
distutils
.
core
import
setup
PKG_NAME
=
"pyfaasm"
def
main
():
long_description
=
"""
## Faasm Python Bindings
See main repo at https://github.com/faasm/faasm
"""
setup
(
name
=
PKG_NAME
,
packages
=
[
PKG_NAME
],
version
=
"0.0.1"
,
description
=
"Python interface for Faasm"
,
long_description
=
long_description
,
long_description_content_type
=
"text/markdown"
,
author
=
"Simon S"
,
author_email
=
"foo@bar.com"
,
url
=
"https://github.com/faasm/python"
,
)
if
__name__
==
"__main__"
:
main
()
Back
|
FazBrowse Home
|
New Git URL