-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
38 lines (36 loc) · 917 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
37
38
import os
from setuptools import find_packages, setup
# Source the version from the package.
__version__ = 'Unknown'
exec(open('src/perimeterator/version.py').read())
setup(
name='perimeterator',
version=__version__,
description='Continuous AWS Perimeter Monitoring',
author='Peter Adkins',
author_email='peter.adkins@kernelpicnic.net',
url='https://www.github.com/darkarnium/perimeterator',
packages=find_packages('src'),
license='MIT',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
package_dir={
'perimeterator': 'src/perimeterator',
},
scripts=[
'src/enumerator.py',
'src/scanner.py',
],
setup_requires=[
'pytest-runner',
],
tests_require=[
'pytest',
'pytest-cov',
],
install_requires=[
'boto3==1.9.204'
]
)