-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
39 lines (32 loc) · 1.13 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
#!/usr/bin/env python
'''Heil to combinatoric explosion reduce!'''
import os
from setuptools import setup, find_packages
def read(*paths):
"""Build a file path from *paths* and return the contents."""
with open(os.path.join(*paths), 'r') as f:
return f.read()
setup(
name='binary-pairs',
version='0.0.3',
author='Oleg Strizhechenko',
author_email='[email protected]',
license='GPL',
url='https://github.com/strizhechenko/binary-pairs',
keywords='combinatoric testing utils fuzz pairwise nwise reduce',
description='Utility designed for check combinations of multiple binary params',
long_description=(read('README.rst')),
packages=find_packages(exclude=['tests*']),
scripts=['utils/binary-pairs'],
install_requires=['AllPairs'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Operating System :: MacOS',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Topic :: Software Development',
'Topic :: Utilities',
],
)