forked from coderanger/pychef
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
29 lines (27 loc) · 913 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
#!/usr/bin/env python
# -*- coding: iso-8859-1 -*-
import os
from setuptools import setup, find_packages
setup(
name='PyChefRevival',
version='0.3.1',
packages=find_packages(),
author='Aryn Lacy',
author_email='[email protected]',
description='Python implementation of a Chef API client.',
long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),
license='Apache 2.0',
keywords='',
url='http://github.com/aryn-lacy/pychef',
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: Apache License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
zip_safe=False,
install_requires=['six>=1.9.0', 'requests>=2.7.0'],
tests_require=['unittest2', 'mock'],
test_suite='unittest2.collector',
)