first commit, packaged on pypi, easy_install ago!
This commit is contained in:
commit
c672eb00c9
3 changed files with 84 additions and 0 deletions
27
setup.py
Normal file
27
setup.py
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
# installation: easy_install ago
|
||||
|
||||
from setuptools import setup
|
||||
|
||||
setup(
|
||||
name='ago',
|
||||
version='0.0.1',
|
||||
description='ago: Human readable timedeltas',
|
||||
|
||||
author = 'Russell Ballestrini',
|
||||
author_email = 'russell@ballestrini.net',
|
||||
keywords = 'ago human readable time deltas timedelta',
|
||||
url = 'https://bitbucket.org/russellballestrini/ago/src',
|
||||
|
||||
platforms=['All'],
|
||||
license='Public Domain',
|
||||
|
||||
#package_dir = {'': ''},
|
||||
py_modules = ['ago'],
|
||||
include_package_data=True,
|
||||
)
|
||||
|
||||
# setup keyword args: http://peak.telecommunity.com/DevCenter/setuptools
|
||||
|
||||
# built and uploaded to pypi with this:
|
||||
# python setup.py sdist bdist_egg register upload
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue