-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
30 lines (29 loc) · 939 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
29
30
#!/usr/bin/env python
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
version = '0.0.1'
setup(
name='puppetdb',
version=version,
description='Python client for interacting with PuppetDB',
url='http://github.com/arcus-io/puppetdb-python',
download_url=('https://github.com/arcus-io/'
'puppetdb-python/archive/%s.tar.gz' % version),
author='Arcus, Inc.',
author_email='[email protected]',
keywords=['puppet', 'puppetdb'],
license='Apache 2.0',
packages=['puppetdb','puppetdb/v2'],
install_requires = [ 'requests' ],
test_suite='tests.all_tests',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
]
)