-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (31 loc) · 956 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
40
41
42
import os
import re
from setuptools import find_packages, setup
REGEXP = re.compile(r"^__version__\W*=\W*'([\d.abrc]+)'")
def read_version():
init_py = os.path.join(
os.path.dirname(__file__), 'pandocserver', '__init__.py'
)
with open(init_py) as f:
for line in f:
match = REGEXP.match(line)
if match is not None:
return match.group(1)
else:
msg = f'Cannot find version in ${init_py}'
raise RuntimeError(msg)
install_requires = ['aiohttp', 'aiohttp_jinja2', 'aiodns', 'cchardet', 'Click', 'trafaret_config', 'pypandoc']
setup(
name='pandocserver',
version=read_version(),
description='pandocserver',
platforms=['POSIX'],
packages=find_packages(),
package_data={
'': ['config/*.*'],
'templates': ['*.html']
},
include_package_data=True,
install_requires=install_requires,
zip_safe=False,
)