-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (29 loc) · 793 Bytes
/
setup.py
File metadata and controls
33 lines (29 loc) · 793 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
#!/usr/bin/env python
from setuptools import setup, find_packages
__version__ = '0.1'
__build__ = ''
setup(name='hpfortify',
version=__version__ + __build__,
description='Python HPfority api client',
author='Location Labs',
author_email='info@locationlabs.com',
url='http://www.locationlabs.com',
packages=find_packages(exclude=['*.tests']),
setup_requires=[
'nose>=1.0'
],
install_requires=[
'click==5.1',
'enum34>=1.0.4',
],
tests_require=[
'mock==1.0.1',
'coverage',
],
test_suite='hpfortify.tests',
entry_points={
'console_scripts': [
'start-static-scan = hpfortify.cmd.client:start_static_scan',
],
},
)