-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 748 Bytes
/
setup.py
File metadata and controls
31 lines (28 loc) · 748 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
import sys
from setuptools import setup, find_packages
if sys.version_info[0] < 3 or sys.version_info[1] < 5:
sys.exit('Error: AVA only runs on Python 3.5 and above.')
setup(
name='ava',
version='1.0.0',
packages=find_packages(),
author='Jonathan Hawes',
author_email='jhawes@indeed.com',
install_requires=[
'bs4==0.0.1',
'defusedxml==0.5.0',
'pytest==3.3.1',
'pytest-cov==2.5.1',
'pytest-mock==1.6.3',
'PyYAML==3.12',
'requests==2.21.0',
'requests-toolbelt==0.8.0',
'urllib3==1.24.1'
],
long_description=open('README.md').read(),
entry_points={
'console_scripts': [
'ava = ava.scanner:console'
]
}
)