-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 901 Bytes
/
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
# 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
setup(
name="faas-converter",
description="Function as a service converter",
version="0.0.2",
url="https://github.com/walter-bd/faas-converter",
author="Walter Benitez",
author_email="walterbenitez7@gmail.com",
license="Apache 2.0",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware"
],
download_url='https://github.com/walter-bd/faas-converter/0.1.tar.gz',
keywords="cloud faas serverless functions",
packages=["faas_converter"],
scripts=["faasconverter"]
)