-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (26 loc) · 730 Bytes
/
setup.py
File metadata and controls
32 lines (26 loc) · 730 Bytes
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
#!/usr/bin/env python
from distutils.core import setup
# FIXME: We will stick this shit here for now for the sake of running Travis CI.
__author__ = "Sumin Byeon"
__email__ = "suminb@gmail.com"
__version__ = "0.2.1"
def readme():
try:
f = open("README.rst")
content = f.read()
f.close()
return content
except IOError:
pass
except OSError:
pass
setup(
name="winnowing",
version=__version__,
description="A Python implementation of the Winnowing (local algorithms for document fingerprinting)",
long_description=readme(),
author=__author__,
author_email=__email__,
url="https://github.com/suminb/winnowing",
packages=["winnowing"],
)