-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
35 lines (32 loc) · 1.11 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
# python3 setup.py sdist
# python3 setup.py bdist_wheel
# python3 setup.py bdist_egg
# twine upload dist/*.* [-r testpypi]
# -> automated in tools/make-dist.sh
from setuptools import setup
import os
with open("README", "r") as fh:
long_description = fh.read()
setup(
name="snafu",
description="Swiss Army Knife of Serverless Computing",
long_description=long_description,
version="0.0.3",
url="https://github.com/serviceprototypinglab/snafu",
author="Josef Spillner",
author_email="[email protected]",
license="Apache 2.0",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Environment :: No Input/Output (Daemon)",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware"
],
keywords="cloud faas serverless functions",
packages=["snafulib", "snafulib.executors", "snafulib.loggers", "snafulib.authenticators", "snafulib.connectors"],
scripts=["snafu", "snafu-import", "snafu-accounts", "snafu-control"],
install_requires=["flask"]
)