-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (29 loc) · 1.07 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
from setuptools import setup
setup(name='nestedfacts',
description='This library enables users of Ansible to load nested'
'directories as local facts. Refer to the README for'
'more details.',
author='uberspace.de',
author_email='[email protected]',
url='https://github.com/uberspace/nestedfacts',
version='1.0.1',
license='MIT',
packages=['.'],
zip_safe=True,
install_requires=[
'pyyaml',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'Topic :: System :: Systems Administration',
'Topic :: Utilities',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
],
)