summaryrefslogtreecommitdiff
path: root/setup.py
blob: bec372256682195b0ea88c5dbe94954f63527031 (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
26
27
28
#!/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",
      license = "Python Software Foundation License",
      author="Will McGugan",
      author_email="will@willmcgugan.com",
      url="http://code.google.com/p/pyfilesystem/",
      download_url="http://code.google.com/p/pyfilesystem/downloads/list",
      platforms = ['any'],
      packages=['fs','fs.expose','fs.expose.fuse','fs.tests'],
      classifiers=classifiers,
      )