-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (25 loc) · 852 Bytes
/
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
# -*- coding: utf-8 -*-
#!/usr/bin/env python
from setuptools import setup
setup(
name='pybonita',
version='0.1',
author='Tony Moutaux, Julien Seiler',
author_email='[email protected], [email protected]',
packages=['pybonita'],
description='pybonita is a Python wrapper for the Bonita REST API',
long_description='',
license='BSD License',
platforms='any',
install_requires=['requests','lxml','chardet','beautifulsoup4'],
tests_require='nose',
test_suite='nose.collector',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)