-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
40 lines (36 loc) · 909 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
# -*- coding: utf-8 -*-
"""
Heso
----
Heso is a web application to share snippets and pastes with others, and
an open source clone of Gist.
"""
from setuptools import setup, find_packages
description = """Heso is a web application \
to share snippets and pastes with others."""
setup(
name='Heso',
version='0.1.0',
description=description,
author='lanius',
author_email='[email protected]',
license='Apache License 2.0',
package_dir={'': 'src'},
packages=find_packages('src'),
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'Flask',
'Flask-Mitten',
'GitPython',
'WTForms',
'peewee',
],
entry_points="""
[paste.app_factory]
main = heso.controller:make_app
[console_scripts]
heso-adduser = heso.script:adduser
""",
)