-
Notifications
You must be signed in to change notification settings - Fork 36
/
setup.py
41 lines (34 loc) · 1.09 KB
/
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
39
40
41
#!/usr/bin/env python
from setuptools import setup, find_packages
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
def find_scripts():
scripts = []
exclude = ['setup.py']
for file in os.scandir('.'):
if file.name.endswith('.py') and file.is_file() and (file.name not in exclude):
scripts.append(file.name)
return scripts
setup(
name='redcanary-response-utils',
author='Keith McCammon',
author_email='[email protected]',
url='https://github.com/redcanaryco/redcanary-response-utils',
license='MIT',
packages=find_packages(),
scripts=find_scripts(),
description='Tools to automate and/or expedite response.',
version='0.1',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: Freely Distributable',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
install_requires=[
'cbapi'
]
)