-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSetup.py
More file actions
34 lines (33 loc) · 1.36 KB
/
Setup.py
File metadata and controls
34 lines (33 loc) · 1.36 KB
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
# _*_ coding: utf-8 _*_
from distutils.core import setup
from setuptools import find_packages
setup(
name="mainframe-bot-api",
version="1.3.5",
author="aubruz",
author_email="aubruz@hotmail.com",
packages=find_packages(),
install_requires=['requests', 'simplejson'],
python_requires='>=2.6, !=3.0.*, !=3.1.*, !=3.2.*, <4',
url="https://github.com/aubruz/mainframe-api-python",
license="MIT License",
description="Communicate easily with Mainframe API",
long_description='Mainframe API includes a Client to make calls easily, responses objects and a complete set of '
'UI components to build forms, dialogs and messages.',
keywords='mainframe bot api',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)