-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (30 loc) · 1019 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
# -*- coding: utf-8 -*-
from distutils.core import setup
from setuptools import find_packages
import os
base_name='ConnTestD'
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name=base_name,
version='1.0',
author=u'Robert Putt',
author_email='robputt796@github',
include_package_data = True,
packages=find_packages(), # include all packages under this directory
description='to update',
long_description="",
zip_safe=False,
entry_points = {'console_scripts': [
'conntestd = conntestd.app:main',],},
package_data={'/conntestd/templates':['*'],
'/conntestd/static/js':['*'],
'/conntestd/static/css':['*'],},
# Adds dependencies
install_requires = ['flask',
'sqlalchemy',
'speedtest-cli',
'Flask-APScheduler',
'pygal'
]
)