-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
36 lines (26 loc) · 978 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Setup script for Anno."""
from setuptools import find_packages, setup
# -----------------------------------------------------------------------------
description = 'Anno is a thin user interface on Markdown files for easy and ' \
'local text editing, organization, and program composability.'
setup_args = dict(
name='anno',
version='0.0.5',
license='MIT',
author='Gregory Gundersen',
author_email='[email protected]',
description=description,
url='https://github.com/gwgundersen/anno',
packages=find_packages(),
include_package_data=True,
install_requires=['flask>=1.1.1', 'pypandoc>=1.4', 'markdown2'],
entry_points={'console_scripts': ['anno = anno.annoapp:main']},
python_requires='>=3.6'
)
def main():
setup(**setup_args)
# -----------------------------------------------------------------------------
if __name__ == '__main__':
main()