From a04db87eff966915025dfb8737af6e62dac9cf46 Mon Sep 17 00:00:00 2001 From: Michael Axiak Date: Fri, 10 Feb 2012 17:01:03 -0500 Subject: [PATCH] Initial commit --- .gitignore | 1 + README.rst | 8 ++++++++ fuzzydict.py => fuzzyset/__init__.py | 0 setup.py | 25 +++++++++++++++++++++++++ 4 files changed, 34 insertions(+) create mode 100644 README.rst rename fuzzydict.py => fuzzyset/__init__.py (100%) create mode 100644 setup.py diff --git a/.gitignore b/.gitignore index db15598..b04accb 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +*.egg-info /lib/ /bin/ /include/ diff --git a/README.rst b/README.rst new file mode 100644 index 0000000..9518343 --- /dev/null +++ b/README.rst @@ -0,0 +1,8 @@ +=========================================== +fuzzyset - A fuzzy string set for python. +=========================================== + +License +======= + +BSD diff --git a/fuzzydict.py b/fuzzyset/__init__.py similarity index 100% rename from fuzzydict.py rename to fuzzyset/__init__.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..05433db --- /dev/null +++ b/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', + ], +)