-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
30 lines (29 loc) · 1.2 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
29
30
# -*- encoding: utf8 -*-
from setuptools import setup, find_packages
setup(
name='enki',
version='3.0.0',
packages=find_packages(),
install_requires=['pybossa-client>=3.0.0, <3.1.0', 'pandas'],
# metadata for upload to PyPI
author='Scifabric LTD',
author_email='[email protected]',
description='''A Python library to analyze PYBOSSA project's results''',
long_description='''PYBOSSA is a crowdsourcing, microtasking or citizen
science framework. This tiny library allows you to analyze the results of a PYBOSSA project with PANDAS.''',
license='AGPLv3',
url='https://github.com/Scifabric/enki',
download_url='https://github.com/Scifabric/enki/zipball/master',
include_package_data=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Scientific/Engineering'
],
entry_points=''''''
)