-
Notifications
You must be signed in to change notification settings - Fork 88
/
setup.py
34 lines (31 loc) · 833 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
from setuptools import setup, find_packages
print(find_packages())
setup(
name='wiki2',
version='3.0.2',
description='simple python markdown wiki with web ui',
author='Alexander Jung-Loddenkemper',
author_email='alexander@julo.ch',
url='https://github.com/alexanderjulo/wiki',
packages=find_packages(),
include_package_data=True,
python_requires='>3.7',
install_requires=[
'Flask>=0.9',
'Click>=6,<7',
'Flask-Login>=0.4',
'Flask-WTF>=0.8',
'Markdown>=2.2.0',
'Pygments>=1.5',
'WTForms>=1.0.2',
'Werkzeug>=0.8.3',
'python-markdown-math'
],
setup_requires=['pytest-runner'],
tests_require=['pytest', 'mock'],
entry_points={
'console_scripts': [
'wiki=wiki.cli:main'
]
}
)