-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
38 lines (34 loc) · 1 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
# Author: Martin Babinsky <martbab@gmail.com>
# See LICENSE file for license
"""
Python package setup
"""
from distutils.core import setup
from setuptools import find_packages
setup(
author='Martin Babinsky',
author_email='martbab@gmail.com',
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
("License :: OSI Approved :: GNU Lesser General Public License v3 or "
"later (LGPLv3+)"),
"Topic :: Utilities",
],
description='A program which builds FreeIPA and runs tests '
'in a Docker container',
entry_points={
'console_scripts': [
'ipa-docker-test-runner=ipadocker.cli:main'
]
},
install_requires=['docker-py', 'PyYAML'],
license='GPLv3+',
name='ipa-docker-test-runner',
packages=find_packages(exclude=['data', 'tests']),
package_data={
'data': ['data/*']
},
version='0.3.2',
url='https://github.com/freeipa/ipa-docker-test-runner',
)