-
Notifications
You must be signed in to change notification settings - Fork 71
/
setup.py
48 lines (41 loc) · 1.41 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os.path
from setuptools import setup, find_packages
full_version = ''
root_dir = os.path.abspath(os.path.dirname(__file__))
readme_file = os.path.join(root_dir, 'README.rst')
with open(readme_file, encoding='utf-8') as f:
long_description = f.read()
version_module = os.path.join(root_dir, 'src', 'mattermostdriver', 'version.py')
with open(version_module, encoding='utf-8') as f:
exec(f.read())
setup(
name='mattermostdriver',
version=full_version,
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 :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
package_dir={'': 'src'},
packages=find_packages('src'),
python_requires=">=3.6",
install_requires=[
'aiohttp>=3.8.1<4.0.0'
'httpx>=0.20.0<1.0.0',
],
)