-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
37 lines (30 loc) · 954 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
31
32
33
34
35
36
37
from setuptools import setup
import pathlib
import os
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text()
package_root = os.path.abspath(os.path.dirname(__file__))
version = {}
with open(os.path.join(package_root, "parliament", "version.py")) as fp:
exec(fp.read(), version)
version = version["__version__"]
setup(
name='parliament-functions',
packages=['parliament'],
version=version,
license='MIT',
description='A framework for invoking functions over HTTP',
long_description=README,
long_description_content_type='text/markdown',
author='Lance Ball',
author_email='[email protected]',
url='https://github.com/boson-project/parliament',
keywords=['faas', 'functions', 'openshift'],
install_requires=['cloudevents', 'flask', 'waitress'],
classifiers=[],
entry_points={
"console_scripts": [
"parliament=parliament.__main__:main",
]
},
)