-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
71 lines (66 loc) · 2.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
VERSION = '0.4'
with open('README.rst') as readme:
LONG_DESCRIPTION = ''.join(readme.readlines())
DESCRIPTION = """Infrastrucutre metadata scraper with support for multiple
resource providers and tools for relational analysis and visualization."""
setup(
name='infra-scraper',
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
author='Aleš Komárek',
author_email='[email protected]',
license='Apache License, Version 2.0',
url='https://github.com/cznewt/infra-scraper/',
packages=find_packages(),
install_requires=[
'pyyaml',
'msgpack-python',
'Flask',
'Click',
'os_client_config',
'python-cinderclient',
'python-glanceclient',
'python-heatclient',
'python-keystoneclient',
'python-novaclient',
'python-neutronclient',
'pykube',
'boto3',
'tosca-parser',
'salt-pepper',
'python-terraform',
'pydot',
'graphviz',
'juju'
],
extras_require={
'tests': [
'pytest',
'flake8'],
'docs': [
'sphinx >= 1.4',
'sphinx_rtd_theme']
},
classifiers=[
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
entry_points={
'console_scripts': [
'scraper_web = infra_scraper.cli:runserver',
'scraper_status = infra_scraper.cli:status',
'scraper_get = infra_scraper.cli:scrape',
'scraper_get_forever = infra_scraper.cli:scrape_forever',
'scraper_get_all = infra_scraper.cli:scrape_all',
'scraper_get_all_forever = infra_scraper.cli:scrape_all_forever',
],
},
)