-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
43 lines (37 loc) · 1.38 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
40
41
42
43
"""Setup for fuzzybit module"""
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from setuptools import setup
def readme():
"""Returns documentation"""
with open('README.rst') as readme_file:
return readme_file.read()
setup(name='fuzzybit',
version='0.2.0',
description='Fuzzy bit library',
long_description=readme(),
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Security',
'Topic :: Utilities',
],
keywords='fuzzy bit integer entropy',
url='https://github.com/tmfink/fuzzybit',
download_url='https://github.com/tmfink/fuzzybit/tarball/master',
author='Travis Finkenauer',
author_email='[email protected]',
license='GPLv3',
packages=['fuzzybit'],
install_requires=['six'],
test_suite='fuzzybit.tests.test_fuzzybit',
include_package_data=True,
zip_safe=True)