forked from Vaelor/python-mattermost-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (31 loc) · 912 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
28
29
30
31
32
33
34
35
36
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os.path
from setuptools import setup, find_packages
root_dir = os.path.abspath(os.path.dirname(__file__))
readme_file = os.path.join(root_dir, 'README.rst')
with open(readme_file, 'r') as f:
long_description = f.read()
setup(
name='mattermostdriver',
version='7.1.0',
description='A Python Mattermost Driver',
long_description=long_description,
url='https://github.com/Vaelor/python-mattermost-driver',
author='Christian Plümer',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
],
package_dir={'': 'src'},
packages=find_packages('src'),
install_requires=[
'requests>=2.11.1'
],
)