This repository was archived by the owner on Jun 12, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (34 loc) · 1.47 KB
/
setup.py
File metadata and controls
38 lines (34 loc) · 1.47 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
import io
from setuptools import setup, find_packages
install_requirements = io.open('requirements.txt', encoding='utf-8').read().split('\n')
test_requirements = []
long_description = io.open('README.md', encoding='utf-8').read()
setup(
name='PyMturkGspread',
version='1.0.0',
author='Haldun Anil',
author_email='haldunanil@gmail.com',
license='MIT',
url='https://github.com/haldunanil/pymturkgspread',
packages=find_packages(),
install_requires=install_requirements,
tests_require=test_requirements,
description='A Python package to deploy and manage surveys through Amazon Mechanical Turk and Google Spreadsheets',
long_description=long_description,
download_url='https://github.com/haldunanil/pymturkgspread/archive/master.zip',
keywords=['amazon', 'aws', 'boto', 'mturk', 'mechanical turk', 'mechanical', 'turk', 'survey', 'questionnaire', 'google spreadsheets'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Internet',
'Environment :: Web Environment',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)