Skip to content

Commit

Permalink
Setup.py is failing from pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
flashingpumpkin committed Jan 26, 2012
1 parent d399948 commit 7e852ae
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions setup.py
@@ -1,17 +1,10 @@
#!/usr/bin/env python

import sys

from setuptools import setup,find_packages

install_requires = ['setuptools','GitPython' ]
# simplejson is included in the standard library since Python 2.6 as json.
if sys.version_info[:2] < (2, 6):
install_requires.append('simplejson >= 2.1.1')

setup(
name='Hammertime',
version='0.2.3',
version='0.2.4',

description='Time tracking with git.',
long_description=open('README.rst').read(),
Expand All @@ -29,7 +22,10 @@
'git-time = hammertime:main',
],
},
install_requires = install_requires,

install_requires = [
'GitPython'
],

classifiers=[
'Development Status :: 4 - Beta',
Expand All @@ -42,4 +38,5 @@
'Programming Language :: Python :: 2.7',
'Topic :: Software Development',
],
zip_safe = False,
)

0 comments on commit 7e852ae

Please sign in to comment.