We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 819b222 commit f86fed5Copy full SHA for f86fed5
setup.py
@@ -5,17 +5,15 @@
5
6
setup(
7
name='SizeFS',
8
- version='0.2.5',
+ version='0.2.6',
9
author='Mark McArdle',
10
author_email='[email protected]',
11
packages=['sizefs', 'tests'],
12
scripts=[],
13
url='http://pypi.python.org/pypi/SizeFS/',
14
download_url='https://github.com/sohonetlabs/sizefs',
15
license='LICENSE.txt',
16
- ext_modules=[
17
- Extension("sizefs.contents", ["sizefs/contents.pyx"]),
18
- ] + cythonize("sizefs/contents.pyx",),
+ ext_modules = cythonize("sizefs/contents.pyx",),
19
description='SizeFS is a mock filesystem for creating files of particular '
20
'sizes with specified contents.',
21
long_description=open('README.txt').read(),
0 commit comments