forked from cloudviz/agentless-system-crawler
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
25 lines (23 loc) · 800 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
from setuptools import setup, find_packages
setup(
name='agentless-system-crawler',
version='0.0.1.dev0',
# description='',
# long_description=long_description,
author='IBM',
# author_email='',
license='apache2',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2.7',
],
packages=find_packages(),
install_requires=['psutil', 'netifaces', ],
setup_requires=['pytest-runner>=2.0,<3dev', ],
tests_require=['pytest', ],
use_2to3=True,
data_files=[('plugins', ['plugins/cloudsight_environment.plugin',
'plugins/cloudsight_environment.py'])]
)