Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
axiak committed Feb 10, 2012
1 parent 797f4b9 commit a04db87
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -1,3 +1,4 @@
*.egg-info
/lib/
/bin/
/include/
Expand Down
8 changes: 8 additions & 0 deletions README.rst
@@ -0,0 +1,8 @@
===========================================
fuzzyset - A fuzzy string set for python.
===========================================

License
=======

BSD
File renamed without changes.
25 changes: 25 additions & 0 deletions setup.py
@@ -0,0 +1,25 @@
import os
from setuptools import setup

def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()

setup(
name = "fuzzyset",
version = "0.0.1",
author = "Michael Axiak",
author_email = "mike@axiak.net",
description = ("A simple python fuzzyset implementation."),
license = "BSD",
keywords = "fuzzyset fuzzy data structure",
url = "https://github.com/axiak/fuzzyset/",
packages=['fuzzyset'],
long_description=read('README.rst'),
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: BSD License",
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries',
],
)

0 comments on commit a04db87

Please sign in to comment.