-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
28 lines (27 loc) · 1.06 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
from setuptools import setup, find_packages
setup(
name='pybossa-client',
version='3.0.0',
packages=find_packages(),
install_requires=['requests>=0.13.0'],
# metadata for upload to PyPI
author='Open Knowledge Foundation Labs',
# TODO: change
author_email='[email protected]',
description='pybossa-client is a tiny Python library makes it easy to work with PYBOSSA.',
long_description='''PYBOSSA is a crowdsourcing framework. This tiny library allows you to interact with it.''',
license='MIT',
url='https://github.com/Scifabric/pybossa-client',
download_url='https://github.com/Scifabric/pybossa-client/zipball/master',
include_package_data=True,
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
],
entry_points=''''''
)