-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (38 loc) · 1.37 KB
/
setup.py
File metadata and controls
40 lines (38 loc) · 1.37 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
36
37
38
39
40
import setuptools
if __name__ == '__main__':
setuptools.setup(
name='testaid',
version='0.15.1',
author='RebelCodeBase',
author_email='rebelcodebase@riseup.net',
description='Fixtures for ansible, testinfra and molecule',
long_description='See testaid at github: '
'https://github.com/RebelCodeBase/testaid',
url='https://github.com/RebelCodeBase/testaid',
license='Apache-2.0',
packages=setuptools.find_packages(),
package_data={
'': ['*.rst'],
},
entry_points={
'pytest11': ['testaid=testaid.plugin']
},
install_requires=[
'ansible>=2.8',
],
platforms='any',
zip_safe=False,
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Intended Audience :: Information Technology',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Testing',
'Topic :: System :: Systems Administration',
'Framework :: Pytest',
],
)