forked from simonvc/mondo-python
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
27 lines (26 loc) · 808 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
27
import os
from setuptools import setup
setup(
name='mondo-python',
version='0.0.2',
packages=['mondo', 'tools'],
url='https://github.com/gabalese/mondo-python',
license='MIT',
install_requires=[
'python-dateutil==2.5.2',
'requests==2.9.1',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
author='gabalese',
author_email='gabriele@alese.it',
description='Library to deal with the Mondo API'
)