Commit 034ef7bc by willmcgugan

Tweaking setup.py

parent c21da56c
#!/user/bin/env python
from distutils.core import setup
from fs import __version__ as VERSION
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Python Software Foundation License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: System :: Filesystems',
]
setup(name='fs',
version=VERSION,
py_modules=['fs'],
description="A filesytem abstraction",
author="Will McGugan",
author_email="will@willmcgugan.com",
url="http://code.google.com/p/pyfilesystem/",
packages=['fs'],
classifiers=classifiers,
)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment