forked from python-provy/provy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (40 loc) · 1.21 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
41
42
43
44
45
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from provy import __version__
setup(
name='provy',
version=__version__,
description="provy is an easy-to-use server provisioning tool.",
long_description="provy is an easy-to-use server provisioning tool.",
keywords='provisioning devops infrastructure server',
author='Bernardo Heynemann',
author_email='[email protected]',
url='http://provy.me',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.6',
'Topic :: System :: Installation/Setup'
],
packages=find_packages(exclude=['tests']),
include_package_data=True,
package_data={
'': ['*.template'],
},
install_requires=[
"fabric",
"jinja2",
"configobj",
],
entry_points={
'console_scripts': [
'provy = provy.console:main',
],
},
)