forked from slackapi/python-slack-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
135 lines (110 loc) · 3.97 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
# -*- coding: utf-8 -*-
import os
import subprocess
import sys
from shutil import rmtree
from setuptools import setup, find_packages, Command
import codecs
__version__ = None
exec(open("slack/version.py").read())
here = os.path.abspath(os.path.dirname(__file__))
long_description = ""
with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as readme:
long_description = readme.read()
tests_require = ["pytest", "pytest-cov", "codecov", "flake8", "black"]
class BaseCommand(Command):
"""Base Command"""
user_options = []
@staticmethod
def status(s):
"""Prints things in bold."""
print("\033[1m{0}\033[0m".format(s))
def initialize_options(self):
pass
def finalize_options(self):
pass
def _run(self, s, command):
try:
self.status(s + "\n" + " ".join(command))
subprocess.check_call(command)
except subprocess.CalledProcessError as error:
sys.exit(error.returncode)
class UploadCommand(BaseCommand):
"""Support setup.py upload. Thanks @kennethreitz!"""
description = "Build and publish the package."
def run(self):
try:
self.status("Removing previous builds…")
rmtree(os.path.join(here, "dist"))
except OSError:
pass
self._run(
"Building Source and Wheel (universal) distribution…",
[sys.executable, "setup.py", "sdist", "bdist_wheel", "--universal"],
)
self._run(
"Installing Twine dependency…",
[sys.executable, "-m", "pip", "install", "twine"],
)
self._run(
"Uploading the package to PyPI via Twine…",
[sys.executable, "-m", "twine", "upload", "dist/*"],
)
self._run("Creating git tags…", ["git", "tag", f"v{__version__}"])
self._run("Pushing git tags…", ["git", "push", "--tags"])
class ValidateCommand(BaseCommand):
"""Support setup.py validate."""
description = "Run Python static code analyzer (flake8), formatter (black) and unit tests (pytest)."
def run(self):
self._run(
"Installing test dependencies…",
[sys.executable, "-m", "pip", "install"] + tests_require,
)
self._run("Running black…", [sys.executable, "-m", "black", f"{here}/slack"])
self._run("Running flake8…", [sys.executable, "-m", "flake8", f"{here}/slack"])
self._run(
"Running pytest…",
[
sys.executable,
"-m",
"pytest",
"--cov-report=xml",
f"--cov={here}/slack",
"tests/",
],
)
setup(
name="slackclient",
version=__version__,
description="Slack API clients for Web API and RTM API",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/slackapi/python-slackclient",
author="Slack Technologies, Inc.",
author_email="[email protected]",
python_requires=">=3.6.0",
include_package_data=True,
license="MIT",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Topic :: Communications :: Chat",
"Topic :: System :: Networking",
"Topic :: Office/Business",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
keywords="slack slack-web slack-rtm chat chatbots bots chatops",
packages=find_packages(
exclude=["docs", "docs-src", "tests", "tests.*", "tutorial"]
),
install_requires=["aiohttp>3.5.2"],
extras_require={"optional": ["aiodns>1.0"]},
setup_requires=["pytest-runner"],
test_suite="tests",
tests_require=tests_require,
cmdclass={"upload": UploadCommand, "validate": ValidateCommand},
)