-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·35 lines (33 loc) · 1.15 KB
/
setup.py
File metadata and controls
executable file
·35 lines (33 loc) · 1.15 KB
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
# -*- coding: utf-8 -*-
from distutils.core import setup
from setuptools import find_packages
from ansible_bundle import __version__
setup(
name='ansible-bundle',
version=__version__,
description="Manage ansible role and modules versioned dependencies.",
long_description=open('README.md').read(),
keywords='ansible roles modules',
author='David PG',
author_email='davidpg@protonmail.com',
url='https://github.com/devopsysadmin/ansible-bundle',
license='GPL v2',
packages=find_packages(exclude=['test']),
entry_points={
'console_scripts': [
'ansible-bundle = ansible_bundle.main:main',
],
},
include_package_data=True,
zip_safe=False,
install_requires=[line for line in open('requirements.txt')],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Operating System :: POSIX',
'Programming Language :: Python :: 2',
'Topic :: Utilities'
]
)