Skip to content
This repository has been archived by the owner on Mar 3, 2023. It is now read-only.

Commit

Permalink
Adds setup.cfg and setup.py for PYPI
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Downs committed Aug 3, 2012
1 parent 79c582e commit cd116b2
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Original file line Diff line number Diff line change
@@ -1,3 +1,5 @@
*.pyc *.pyc
*.DS_Store *.DS_Store
*.log *.log
dist
MANIFEST
File renamed without changes.
File renamed without changes.
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
21 changes: 21 additions & 0 deletions setup.py
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,21 @@
from distutils.core import setup
setup(
name = 'lggr',
packages = ['lggr'],
version = '0.1.0',
description = 'Python Logging For Humans',
author = 'Peter Downs',
author_email = 'peterldowns@gmail.com',
url = 'https://github.com/peterldowns/lggr',
download_url = 'https://github.com/peterldowns/lggr/tarball/v0.1.0',
keywords = ['logging', 'log', 'coroutine'],
classifiers = [
'Programming Language :: Python',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Topic :: System :: Logging',
'Topic :: Software Development :: Libraries :: Python Modules'
],
long_description = open('README.md').read(),
)

0 comments on commit cd116b2

Please sign in to comment.