forked from scaleapi/scaleapi-python-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
18 lines (18 loc) · 952 Bytes
/
setup.py
File metadata and controls
18 lines (18 loc) · 952 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from distutils.core import setup
setup(
name = 'scaleapi',
packages = ['scaleapi'],
version = '0.1.6',
description = 'The official Python client library for the Scale API, the API for human labor.',
author = 'Calvin Huang',
author_email = 'c@lvin.me',
url = 'https://github.com/scaleapi/scaleapi-python-client',
download_url = 'https://github.com/scaleapi/scaleapi-python-client/tarball/0.1.2',
keywords = ['scale', 'scaleapi', 'humans', 'tasks', 'categorization', 'transcription', 'annotation', 'comparison', 'data collection', 'phone call', 'audio transcription'],
install_requires = ['requests', 'enum34'],
classifiers = ['Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries']
)