Skip to content

Commit f41769e

Browse files
committed
Pypi setup
1 parent ac75ac7 commit f41769e

File tree

3 files changed

+1
-8
lines changed

3 files changed

+1
-8
lines changed

setup.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,16 @@
11
__author__ = 'mm'
22
from distutils.core import setup
3-
from distutils.extension import Extension
43

54
setup(
65
name='SizeFS',
7-
version='0.2.3',
6+
version='0.2.4',
87
author='Mark McArdle',
98
author_email='[email protected]',
109
packages=['sizefs', 'tests'],
1110
scripts=[],
1211
url='http://pypi.python.org/pypi/SizeFS/',
1312
download_url='https://github.com/sohonetlabs/sizefs',
1413
license='LICENSE.txt',
15-
ext_modules=[
16-
Extension("sizefs.contents", ["sizefs/contents.pyx"]),
17-
Extension("sizefs.contents", ["sizefs/contents.c"])
18-
],
1914
description='SizeFS is a mock filesystem for creating files of particular '
2015
'sizes with specified contents.',
2116
long_description=open('README.txt').read(),
File renamed without changes.

sizefs/sizefs.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@
2828
import random
2929
import re
3030
import os
31-
import pyximport
32-
pyximport.install()
3331
from contents import (XegerGen, SizeFSZeroGen, SizeFSOneGen,
3432
SizeFSAlphaNumGen, SizeFSGeneratorType)
3533

0 commit comments

Comments
 (0)