Skip to content

Commit

Permalink
new version
Browse files Browse the repository at this point in the history
pep8 compliant
  • Loading branch information
Mark Fiers committed Oct 15, 2012
1 parent 8fc89bc commit 30aa24d
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions lib/python/fist/setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#!/usr/bin/env python

import os
from distutils.core import setup
from distutils.command.install import INSTALL_SCHEMES

Expand All @@ -17,22 +16,21 @@
files and deriving mapped sets. See
http://mfiers.github.com/Moa/api/fist.html for more information
""".strip()

setup(name='fist',
version='0.1.4',
version='0.1.5',
description=DESCRIPTION,
author='Mark Fiers',
author_email='mark.fiers42@gmail.com',
url='http://mfiers.github.com/Moa/api/fist.html',
packages=['fist', ],
package_dir = {'fist': '.'},
requires = [],
classifiers = [
package_dir={'fist': '.'},
requires=[],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
]
)
])

0 comments on commit 30aa24d

Please sign in to comment.