-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (28 loc) · 941 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
# -*- coding: UTF=8 -*-
__author__ = 'Tomas Hartmann'
from setuptools import setup, find_packages
setup(name='webshare-download-manager',
version='0.2.5',
description='Download manager for webshare.cz site. Flask + requests.',
url='https://github.com/cvakiitho/Webshare-download-manager',
author='Tomas Hartmann',
author_email='cvakiitho@gmail.com',
license='LICENSE.txt',
packages=find_packages(),
zip_safe=False,
install_requires=[
'Flask>=0.10.1',
'Jinja2>=2.7.3',
'requests>=2.5.1'],
include_package_data=True,
entry_points = {
'console_scripts': [
'config_server = appwebshare.scripts.configme:main',
'run_server = appwebshare.scripts.run:production',
'run_dev = appwebshare.scripts.run:dev'
]
},
package_data={
'templates': 'appwebshare/templates/*',
},
)