Skip to content

Commit

Permalink
dry up the package metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
jdp committed Apr 30, 2012
1 parent 200dc48 commit b20eee0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 3 additions & 5 deletions setup.py
@@ -1,8 +1,6 @@
# -*- coding: utf-8 -*-

from setuptools import setup, find_packages
from taxon import __version__

from taxon import __version__, __author_name__, __author_email__

with open('README.rst') as f:
readme = f.read()
Expand All @@ -15,8 +13,8 @@
version=__version__,
description='Redis-backed tagged data store',
long_description=readme,
author='Justin Poliey',
author_email='justin@getglue.com',
author=__author_name__,
author_email=__author_email__,
url='https://github.com/jdp/taxon',
keywords=['redis', 'key-value', 'store', 'tag', 'taxonomy'],
packages=find_packages(exclude=('tests', 'docs')),
Expand Down
4 changes: 3 additions & 1 deletion taxon/__init__.py
@@ -1,6 +1,8 @@
from .core import Taxon

__author__ = "Justin Poliey <justin@getglue.com>"
__author_name__ = "Justin Poliey"
__author_email__ = "justin@getglue.com"
__author__ = "%s <%s>" % (__author_name__, __author_email__)
__license__ = "MIT"
__version__ = '0.2.0'

Expand Down

0 comments on commit b20eee0

Please sign in to comment.