Codebase list python-fusepy / 1e882831-1da9-4298-95db-4d5b9b5ddd02/upstream setup.py
1e882831-1da9-4298-95db-4d5b9b5ddd02/upstream

Tree @1e882831-1da9-4298-95db-4d5b9b5ddd02/upstream (Download .tar.gz)

setup.py @1e882831-1da9-4298-95db-4d5b9b5ddd02/upstreamraw · history · blame

#!/usr/bin/env python

from __future__ import with_statement

from setuptools import setup

with open('README') as readme:
    documentation = readme.read()

setup(
    name = 'fusepy',
    version = '3.0.1',

    description = 'Simple ctypes bindings for FUSE',
    long_description = documentation,
    author = 'Giorgos Verigakis',
    author_email = 'verigak@gmail.com',
    maintainer = 'Terence Honles',
    maintainer_email = 'terence@honles.com',
    license = 'ISC',
    py_modules=['fuse'],
    url = 'http://github.com/fusepy/fusepy',

    classifiers = [
        'Intended Audience :: Developers',
        'License :: OSI Approved :: ISC License (ISCL)',
        'Operating System :: MacOS',
        'Operating System :: POSIX',
        'Operating System :: Unix',
        'Programming Language :: Python :: 2.6',
        'Programming Language :: Python :: 3',
        'Topic :: System :: Filesystems',
    ]
)