Skip to content

Commit

Permalink
Pypi setup
Browse files Browse the repository at this point in the history
  • Loading branch information
mmcardle committed Nov 30, 2013
1 parent ac75ac7 commit f41769e
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 8 deletions.
7 changes: 1 addition & 6 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,21 +1,16 @@
__author__ = 'mm'
from distutils.core import setup
from distutils.extension import Extension

setup(
name='SizeFS',
version='0.2.3',
version='0.2.4',
author='Mark McArdle',
author_email='[email protected]',
packages=['sizefs', 'tests'],
scripts=[],
url='http://pypi.python.org/pypi/SizeFS/',
download_url='https://github.com/sohonetlabs/sizefs',
license='LICENSE.txt',
ext_modules=[
Extension("sizefs.contents", ["sizefs/contents.pyx"]),
Extension("sizefs.contents", ["sizefs/contents.c"])
],
description='SizeFS is a mock filesystem for creating files of particular '
'sizes with specified contents.',
long_description=open('README.txt').read(),
Expand Down
File renamed without changes.
2 changes: 0 additions & 2 deletions sizefs/sizefs.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,6 @@
import random
import re
import os
import pyximport
pyximport.install()
from contents import (XegerGen, SizeFSZeroGen, SizeFSOneGen,
SizeFSAlphaNumGen, SizeFSGeneratorType)

Expand Down

0 comments on commit f41769e

Please sign in to comment.