-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (28 loc) · 994 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
from setuptools import setup, find_packages
try:
import multiprocessing
except ImportError:
pass
setup(
#Package information
name = "CyberQCommon",
description = "A simple web server hosting virtual data for the CyberQ BBQ control unit.",
version = "0.0.1a",
license = "BSD New",
url = "https://github.com/kevinteg/VirtualCyberQ",
author = "Kevin Tegtmeier",
author_email = "[email protected]",
#Package metadata
keywords = "cyberq api bbq bbqguru",
install_requires=['flask', 'jinja'],
test_suite = "nose.collector",
tests_require=['nose>=1.0.0', 'mock>=1.0.0', 'coverage'],
packages = find_packages(),
package_data = {
# If any package contains *.txt or *.rst files, include them:
#'': ['*.txt', '*.rst'],
# And include any *.msg files found in the 'hello' package, too:
#'hello': ['*.msg'],
},
# could also include long_description, download_url, classifiers, etc.
)