-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
38 lines (35 loc) · 1.35 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
31
32
33
34
35
36
37
38
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
try:
from pypandoc import convert
long_description = convert('README.md', 'rst')
except IOError:
print("warning: README.md not found")
long_description = ""
except (ImportError, OSError):
print("warning: pypandoc module not found, could not convert Markdown to RST")
long_description = ""
setup(
name="pybossa-pbs",
version="3.0.0",
author="Scifabric LTD",
author_email="[email protected]",
description="PYBOSSA command line client",
long_description=long_description,
license="AGPLv3",
url="https://github.com/Scifabric/pbs",
classifiers = ['Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python',],
py_modules=['pbs', 'helpers', 'pbsexceptions'],
install_requires=['Click>=7.0, <7.1', 'pybossa-client>=3.0.0, <3.1.0', 'requests', 'nose', 'mock', 'coverage',
'rednose', 'pypandoc', 'simplejson', 'jsonschema', 'polib', 'watchdog', 'openpyxl'],
entry_points='''
[console_scripts]
pbs=pbs:cli
'''
)