File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1414
1515from fuseparts import __version__
1616
17+ classifiers = """\
18+ Development Status :: 4 - Beta
19+ Intended Audience :: Developers
20+ License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
21+ Operating System :: POSIX
22+ Programming Language :: C
23+ Programming Language :: Python
24+ Topic :: System :: Filesystems
25+ """
26+
1727# write default fuse.pc path into environment if PKG_CONFIG_PATH is unset
1828#if not os.environ.has_key('PKG_CONFIG_PATH'):
1929# os.environ['PKG_CONFIG_PATH'] = '/usr/local/lib/pkgconfig'
6272 libraries = libsonly )
6373
6474# data_files = []
75+ if sys .version_info < (2 , 3 ):
76+ _setup = setup
77+ def setup (** kwargs ):
78+ if kwargs .has_key ("classifiers" ):
79+ del kwargs ["classifiers" ]
80+ _setup (** kwargs )
6581setup (name = 'fuse-python' ,
6682 version = __version__ ,
6783 description = 'Bindings for FUSE' ,
68- url = 'http://fuse.sourceforge.net' ,
84+ classifiers = filter (None , classifiers .split ("\n " )),
85+ license = 'LGPL' ,
86+ platforms = ['posix' ],
87+ url = 'http://fuse.sourceforge.net/wiki/index.php/FusePython' ,
6988 author = 'Jeff Epler' ,
7089 author_email = 'jepler@unpythonic.dhs.org' ,
7190 maintainer = 'Csaba Henk' ,
You can’t perform that action at this time.
0 commit comments