mirror of
https://github.com/puppetlabs/infinitory.git
synced 2026-01-26 02:08:41 -05:00
Import SRE inventory code
This commit is contained in:
commit
7364ccbff8
18 changed files with 5348 additions and 0 deletions
35
setup.py
Normal file
35
setup.py
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
import setuptools
|
||||
|
||||
setuptools.setup(
|
||||
name = "sreinventory",
|
||||
version = "0.0.1",
|
||||
|
||||
description = "SRE host, role, and service inventory",
|
||||
author = "Daniel Parks",
|
||||
author_email = "daniel.parks@puppet.com",
|
||||
url = "http://github.com/puppetlabs/sreinventory",
|
||||
long_description = open("README.rst").read(),
|
||||
|
||||
classifiers = [
|
||||
"Development Status :: 3 - Alpha",
|
||||
"Intended Audience :: Developers",
|
||||
"Intended Audience :: System Administrators",
|
||||
"Natural Language :: English",
|
||||
"Programming Language :: Python :: 3",
|
||||
],
|
||||
|
||||
packages = [ "sreinventory" ],
|
||||
install_requires = [
|
||||
"Jinja2",
|
||||
"markdown2",
|
||||
"pygments",
|
||||
"simplepup"
|
||||
],
|
||||
|
||||
include_package_data = True,
|
||||
entry_points = {
|
||||
"console_scripts": [
|
||||
"sreinventory = sreinventory.cli:main"
|
||||
]
|
||||
}
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue