-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (45 loc) · 1.3 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
36
37
38
39
40
41
42
43
44
45
46
47
48
from setuptools import setup, find_namespace_packages
def _read(f) -> bytes:
"""
Reads in the content of the file.
:param f: the file to read
:type f: str
:return: the content
:rtype: str
"""
return open(f, 'rb').read()
setup(
name="ufdl.joblauncher-plugins",
description="Plugins for the ufdl-job-launcher framework.",
long_description=(
_read('DESCRIPTION.rst') + b'\n' +
_read('CHANGES.rst')).decode('utf-8'),
url="https://github.com/waikato-ufdl/ufdl-job-launcher-plugins",
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: Apache Software License',
'Topic :: Software Development :: Libraries',
'Programming Language :: Python :: 3',
],
license='Apache 2.0 License',
package_dir={
'': 'src'
},
packages=find_namespace_packages(where='src'),
namespace_packages=[
"ufdl",
],
version="0.0.1",
author='Peter Reutemann',
author_email='[email protected]',
install_requires=[
"wai.annotations.roi==1.0.1",
"wai.annotations.core==0.2.2",
"wai.annotations.subdir==2.0.1",
"ufdl.pythonclient",
"ufdl.json-messages",
"ufdl.joblauncher",
"ufdl.jobtypes",
"ufdl.jobcontracts"
],
)