-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
27 lines (25 loc) · 904 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
#!/usr/bin/env python
from setuptools import setup
from io import open
def read(filename):
with open(filename, encoding='utf-8') as file:
return file.read()
setup(name='Python-Mango-Office-API',
version='3.7.4',
description='API wrapper for Mango Office.',
long_description=read('README.md'),
long_description_content_type="text/markdown",
author='dasshit',
author_email='[email protected]',
url='https://github.com/dasshit/Python-Mango-Office-API',
packages=['mangoapi'],
license='GPL2',
keywords='mangooffice mango',
install_requires=['requests', 'datetime'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 3',
'Environment :: Console',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
]
)