forked from artmello/leappwf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (34 loc) · 908 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
38
39
40
41
42
43
44
45
46
""" LeApp WorkFlow module """
from codecs import open
from distutils.util import convert_path
from os import path
from setuptools import setup
here = path.abspath(path.dirname(__file__))
_NAME = None
_VERSION = None
with open(convert_path('leappwf/version.py')) as mod:
ns = {}
exec(mod.read(), ns)
_NAME = ns['__pkg_name__']
_VERSION = ns['__version__']
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name=_NAME,
version=_VERSION,
description='LeApp WorkFlow module',
long_description=long_description,
url='http://github.com/...',
author='Red Hat',
author_email='[email protected]',
license='LGPLv2+',
packages=['leappwf'],
# Runtime dependencies
install_requires=[
"wowp",
"ipyparallel",
"pyyaml",
"jsonschema",
],
zip_safe=False,
)