-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
39 lines (28 loc) · 886 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
37
38
39
from setuptools import setup
import hooker
try:
from pypandoc import convert_file
def read_md(name):
# Hack to pass the "rst_lint.py" - PyPI
return convert_file(name, "rst").replace("~", "^")
except ImportError:
def read_md(name):
return open(name, "r").read()
try:
LONG_DESCRIPTION = read_md("README.md")
except IOError:
LONG_DESCRIPTION = hooker.__github__ + "/blob/master/README.md"
if not hasattr(hooker, "__version__"):
hooker.__version__ = "0.0.0-dev"
setup(
name=hooker.__name__,
description=hooker.__desc__,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
version=hooker.__version__,
author="Satori-NG org",
author_email=hooker.__email__,
url=hooker.__github__,
packages=["hooker"],
keywords=["hook", "event", "plugin", "extension", "module"]
)