-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 744 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 744 Bytes
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
import setuptools
with open('README.md') as readme_file:
README = readme_file.read()
setuptools.setup(
name='takeme_pymsteams',
version='1.0.0',
description='Python Wrapper for pymsteams',
long_description=README,
long_description_content_type='text/markdown',
install_requires=[
'pymsteams',
'shareplum'
],
keywords='pymsteams MS Teams TakeMe',
url='https://github.com/takeme-pay/pymsteams',
author='Yukitaka Maeda',
author_email='yukitaka.maeda@takeme.com',
license='GPLv3+',
packages=setuptools.find_packages(),
zip_safe=False,
platforms='any',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3'
]
)