forked from thomasvandoren/hiera-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·28 lines (26 loc) · 955 Bytes
/
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
from hiera import __version__
setup(
name ='hiera-py',
version =__version__,
description ='Python interface for the hiera hierachical database.',
long_description=open('README.rst', 'r').read(),
author ='Thomas Van Doren',
author_email ='thomas@thomasvandoren.com',
maintainer ='Thomas Van Doren',
maintainer_email='thomas@thomasvandoren.com',
url ='https://hiera-py.readthedocs.org/',
keywords =['hiera'],
license ='BSD',
packages =['hiera'],
classifiers =[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
],
)