forked from code-kern-ai/refinery-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (35 loc) · 1.09 KB
/
Copy pathsetup.py
File metadata and controls
38 lines (35 loc) · 1.09 KB
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, 'README.md')) as file:
long_description = file.read()
setup(
name='onetask',
version='0.0.1',
author='onetask',
author_email='info@onetask.ai',
description='Official Python SDK for the onetask API',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/onetask-ai/onetask-python',
keywords=['onetask', 'machine learning', 'supervised learning', 'python'],
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
],
package_dir={'': '.'},
packages=find_packages('.'),
install_requires=[
'better-abc==0.0.3',
'certifi==2021.5.30',
'chardet==4.0.0',
'curlify==2.2.1',
'idna==2.10',
'numpy==1.20.3',
'requests==2.25.1',
'urllib3==1.26.5'
],
)