-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (34 loc) · 815 Bytes
/
Copy pathsetup.py
File metadata and controls
35 lines (34 loc) · 815 Bytes
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
# -*- coding: utf-8 -*-
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name='Clue-Less',
version='0.5',
description='',
author='PyBro-JHU',
author_email='stevendgonzales@gmail.com',
tests_require=[
"mock",
"nose",
"nosexcover",
"testtools",
"tox"
],
install_requires=[
"kivy",
"flask",
"flask-restful",
"pymongo",
"requests"
],
test_suite='nose.collector',
zip_safe=False,
include_package_data=True,
packages=find_packages(exclude=['ez_setup']),
package_dir={'help': 'clueless/help'},
package_data={'help': ['clueless_help.htm']}
)