-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py.in
45 lines (42 loc) · 1.37 KB
/
setup.py.in
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 -*-
try:
from setuptools import setup
except ImportError:
import warnings
warnings.warn('No setuptools. Script creation will be skipped.')
from distutils.core import setup
setup(name='ftl_installer',
version='%VERSION%',
description='Ansible based installer framework.',
maintainer='Jason DeTiberus',
maintainer_email='jdetiber@redhat.com',
url='https://github.com/ftl-toolbox/ftl_installer',
license='Apache License, Version 2.0',
package_dir={'ftl_installer': 'ftl_installer'},
packages=[
'ftl_installer',
'ftl_installer.parser',
'ftl_installer.config'
],
install_requires=['click',
'six',
'PyYAML'],
classifiers=[
"Development Status :: 1 - Planning",
"Topic :: Utilities",
"Environment :: Console",
'Programming Language :: Python :: 2.7',
"License :: OSI Approved :: Apache Software License",
],
test_suite='nose.collector',
tests_require=['mock',
'nose',
'coverage',
'pep8',
'pyflakes'],
setup_requires=['nose>=1.0'],
entry_points={
'console_scripts': [
'ftl_installer = ftl_installer.parser.Parser:main',
],
})