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
|
#!/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=['fusepy'],
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',
]
)
|