-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
79 lines (65 loc) · 2.32 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
"""
matterhook
"""
import os
import sys
from pkg_resources import get_distribution, parse_version
from setuptools import find_packages, setup
from setuptools.command.test import test as TestCommand
def read(fname: str):
"""Read README file
Utility function to read the README file.
Used for the long_description. It's nice, because now 1) we have a top
level README file and 2) it's easier to type in the README file than to
put a raw string in below ...
:param fname: README filename
:type fname: str
:return: File contents
:rtype: str
"""
return open(os.path.join(os.path.dirname(__file__), fname)).read()
class PyTest(TestCommand):
user_options = [("pytest-args=", "a", "Arguments to pass to py.test")]
def initialize_options(self):
TestCommand.initialize_options(self)
self.pytest_args = []
def finalize_options(self):
TestCommand.finalize_options(self)
# https://bitbucket.org/pypa/setuptools/commits/cf565b6
if get_distribution("setuptools").parsed_version < parse_version("18.4"):
self.test_args = []
self.test_suite = True
def run_tests(self):
# import here, cause outside the eggs aren't loaded
import pytest
errno = pytest.main(self.pytest_args)
sys.exit(errno)
setup(
author="numberly",
classifiers=[
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries :: Python Modules",
],
cmdclass={"test": PyTest},
description="Interact with Mattermost incoming webhooks easily.",
download_url="https://github.com/numberly/matterhook/tags",
include_package_data=True,
install_requires=[],
license="BSD",
long_description=read("README.rst"),
name="matterhook",
packages=find_packages(),
platforms="any",
tests_require=["pytest"],
url="https://github.com/numberly/matterhook",
version="0.2",
zip_safe=True,
)