-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
81 lines (63 loc) · 2.15 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
import re
from pathlib import Path
from os import path
from setuptools import find_packages, setup
def strip_comments(l):
return l.split("#", 1)[0].strip()
def _pip_requirement(req, *root):
if req.startswith("-r "):
_, path = req.split()
return reqs(*root, *path.split("/"))
return [req]
def _reqs(*f):
path = (Path.cwd() / "requirements").joinpath(*f)
with path.open() as fh:
reqs = [strip_comments(l) for l in fh.readlines()]
return [_pip_requirement(r, *f[:-1]) for r in reqs if r]
def reqs(*f):
return [req for subreq in _reqs(*f) for req in subreq]
def long_description():
with open("README.md", "r") as fh:
return fh.read()
def get_about():
"""Parses __init__ on main module in search of all dunder names"""
regex = re.compile(r"^__\w+__\s*=.*$")
about = dict()
with open("simple_slack_send/__init__.py", "r") as f:
dunders = list()
for l in f.readlines():
if regex.match(l):
dunders.append(l)
exec("\n".join(dunders), about)
with open(path.join(path.dirname(__file__), "simple_slack_send", "VERSION")) as f:
about["__version__"] = f.read().strip()
return about
about = get_about()
setup(
name="Simple Slack Send",
version=about["__version__"],
description="Simple Slack Send - send Slack notifications in CI pipelines",
url="http://github.com/wlatanowicz/simple-slack-send",
author=about["__author__"],
author_email="[email protected]",
license="MIT",
long_description=long_description(),
long_description_content_type="text/markdown",
packages=find_packages(exclude=["tests*"]),
zip_safe=False,
install_requires=reqs("base.txt"),
tests_require=reqs("tests.txt"),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
test_suite="tests",
include_package_data=True,
entry_points={
'console_scripts': [
'simple-slack-send = simple_slack_send.__main__:main'
]
},
)