Skip to content

Commit 4b615c4

Browse files
committed
Adjust setup.py
1 parent 2aba81e commit 4b615c4

1 file changed

Lines changed: 15 additions & 2 deletions

File tree

setup.py

100644100755
Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
#!/usr/bin/env python
2+
# -*- coding: utf-8 -*-
3+
14
# distutils build script
25
# To install fuse-python, run 'python setup.py install'
36

@@ -17,11 +20,18 @@
1720
from fuseparts import __version__
1821

1922
classifiers = """\
20-
Development Status :: 4 - Beta
23+
Development Status :: 5 - Production/Stable
2124
Intended Audience :: Developers
2225
License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
26+
Environment :: Console,
2327
Operating System :: POSIX
2428
Programming Language :: C
29+
Programming Language :: Python,
30+
Programming Language :: Python :: 2,
31+
Programming Language :: Python :: 2.7,
32+
Programming Language :: Python :: 3,
33+
Programming Language :: Python :: 3.5,
34+
Programming Language :: Python :: 3.6,
2535
Programming Language :: Python
2636
Topic :: System :: Filesystems
2737
"""
@@ -102,7 +112,10 @@ def setup(**kwargs):
102112
classifiers = [_f for _f in classifiers.split("\n") if _f],
103113
license = 'LGPL',
104114
platforms = ['posix'],
105-
url = 'http://fuse.sourceforge.net/wiki/index.php/FusePython',
115+
url = 'https://github.com/libfuse/python-fuse',
116+
package_data={'': ['COPYING', 'AUTHORS', 'FAQ', 'INSTALL',
117+
'README.md', 'README.new_fusepy_api',
118+
'README.package_maintainers']},
106119
author = 'Jeff Epler',
107120
author_email = 'jepler@unpythonic.dhs.org',
108121
maintainer = 'Csaba Henk',

0 commit comments

Comments
 (0)