mirror of
https://github.com/puppetlabs/infinitory.git
synced 2026-01-26 02:08:41 -05:00
36 lines
888 B
Python
36 lines
888 B
Python
import setuptools
|
|
|
|
setuptools.setup(
|
|
name = "infinitory",
|
|
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/infinitory",
|
|
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 = [ "infinitory" ],
|
|
install_requires = [
|
|
"click",
|
|
"Jinja2",
|
|
"markdown2",
|
|
"pygments",
|
|
"simplepup"
|
|
],
|
|
|
|
include_package_data = True,
|
|
entry_points = {
|
|
"console_scripts": [
|
|
"infinitory = infinitory.cli:main"
|
|
]
|
|
}
|
|
)
|