summaryrefslogtreecommitdiff
path: root/setup.py
blob: 2b9bdc86b01e9267b170b9290c425c689ead54cf (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/usr/bin/env python

from distutils.core import setup
from fs import __version__ as VERSION

COMMANDS = ['fscat',
            'fscp',
            'fsinfo',
            'fsls',
            'fsmv',
            'fscp',
            'fsrm',
            'fsserve',
            'fstree',
            'fsmkdir']


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','fs.wrapfs',
                'fs.osfs','fs.contrib','fs.contrib.bigfs','fs.contrib.davfs',
                'fs.expose.dokan', 'fs.commands'],
      scripts=['fs/commands/%s' % command for command in COMMANDS],
      classifiers=classifiers,
      )