Skip to content

Commit

Permalink
organizing examples and package files
Browse files Browse the repository at this point in the history
  • Loading branch information
terencehonles committed Apr 24, 2012
1 parent 7457fb9 commit fb8a3b1
Show file tree
Hide file tree
Showing 12 changed files with 24 additions and 13 deletions.
11 changes: 11 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
*.py[oc]
*~
*.swp
/bin
/include
/lib
/lib64
/system
/build
/dist
/fusepy.egg-info
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 2 additions & 0 deletions __init__.py → fuse/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
__version__ = '1.2'

import sys
pyver = sys.version_info[0:2]
if pyver <= (2, 4):
Expand Down
2 changes: 0 additions & 2 deletions fuse.py → fuse/fuse.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@
from traceback import print_exc


__version__ = '1.1'

_system = system()
_machine = machine()

Expand Down
File renamed without changes.
File renamed without changes.
22 changes: 11 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
#!/usr/bin/env python

from setuptools import setup

import fuse
from setuptools import setup, find_packages

from fuse import __version__

setup(
name='fusepy',
version=fuse.__version__,
description='Simple ctypes bindings for FUSE',
author='Giorgos Verigakis',
author_email='verigak@gmail.com',
url='http://code.google.com/p/fusepy/',
license='ISC',
py_modules=['fuse']
name = 'fusepy',
version = __version__,
packages = find_packages(),

description = 'Simple ctypes bindings for FUSE',
author = 'Giorgos Verigakis',
author_email = 'verigak@gmail.com',
url = 'http://code.google.com/p/fusepy/',
license = 'ISC',
)

0 comments on commit fb8a3b1

Please sign in to comment.