-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
40 lines (35 loc) · 1.17 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
import os
from setuptools import setup, find_packages
VERSION = "0.1"
DESCRIPTION = ("Python library to provide a cached and "
"dictionary-like interface to Puppet's facter utility")
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "facterpy",
version = VERSION,
description = DESCRIPTION,
long_description = read('README.md'),
packages = find_packages(),
author = "Kali Norby",
author_email = "[email protected]",
license = "BSD",
keywords = "facter puppet ruby",
url="https://github.com/knorby/facterpy",
install_requires = "six",
extras_require = {
'yaml': ['pyYAML'],
},
zip_safe = True,
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: BSD License",
"Topic :: System :: Systems Administration",
"Intended Audience :: System Administrators",
"Programming Language :: Ruby",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
],
)