Skip to content

Commit

Permalink
Add metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
c-oreills committed Apr 9, 2015
1 parent dc92d64 commit b74177d
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 0 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include README.md
5 changes: 5 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[egg_info]
tag_build =
tag_date = 0
tag_svn_revision = 0

26 changes: 26 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
from setuptools import setup

import os

root_dir = os.path.dirname(__file__)
if not root_dir:
root_dir = '.'
long_desc = open(root_dir + '/README.md').read()

setup(
name='forgetful',
version='0.1.1',
description='Background queue system with no resiliancy',
url='https://github.com/colinhowe/forgetful',
author='Colin Howe',
author_email='colin@colinhowe.co.uk',
packages=['forgetful'],
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Topic :: Utilities',
],
license='Apache 2.0',
long_description=long_desc,
)

0 comments on commit b74177d

Please sign in to comment.