updating some package info
[sfpy.git] / setup.py
1 import setuptools
2
3 with open('README.md', 'rt') as f:
4 long_description = f.read()
5
6 posit_ext = setuptools.Extension(
7 'sfpy.posit', ['sfpy/posit.c'],
8 include_dirs=['SoftPosit/source/include/'],
9 extra_objects=['SoftPosit/build/Linux-x86_64-GCC/softposit.a'],
10 libraries=['m'],
11 )
12
13 float_ext = setuptools.Extension(
14 'sfpy.float', ['sfpy/float.c'],
15 include_dirs=['berkeley-softfloat-3/source/include/'],
16 extra_objects=['berkeley-softfloat-3/build/Linux-x86_64-GCC/softfloat.a'],
17 )
18
19 setuptools.setup(
20 name='sfpy',
21 version='0.2.0',
22 author='Bill Zorn',
23 author_email='bill.zorn@gmail.com',
24 description='softfloat and softposit in python',
25 long_description=long_description,
26 url='https://github.com/billzorn/sfpy',
27 packages=['sfpy'],
28 ext_modules=[posit_ext, float_ext],
29 classifiers=[
30 'Development Status :: 4 - Beta',
31 ]
32 )