summaryrefslogtreecommitdiff
path: root/setup.py
blob: ce986c71f199e2b07a90505a02d45231948bf8c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/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,
      description="Filesystem abstraction",
      long_description="Creates a common interface to filesystems",
      author="Will McGugan",
      author_email="will@willmcgugan.com",
      url="http://code.google.com/p/pyfilesystem/",
      packages=['fs'],
      classifiers=classifiers,
      )