-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 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
from setuptools import setup, find_namespace_packages
setup(
name="ufdl.pythonclient",
description="Core Python library for accessing the UFDL backend, managing the communication.",
url="https://github.com/waikato-ufdl/ufdl-python-client",
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: Apache Software License',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Programming Language :: Python :: 3',
],
license='Apache License Version 2.0',
package_dir={
'': 'src'
},
packages=find_namespace_packages(where='src'),
namespace_packages=[
"ufdl"
],
version="0.0.1",
author='Corey Sterling',
author_email='coreytsterling@gmail.com',
install_requires=[
"requests",
"wai.common>=0.0.34",
"wai.json",
"ufdl.json-messages"
]
)