Skip to content

Commit

Permalink
Added setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
canbula committed Jan 8, 2022
1 parent ba1599f commit 96843cf
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
from distutils.core import setup
setup(
name = 'ieee754',
packages = ['ieee754'],
version = '0.1',
license='MIT',
description = 'A Python library which converts floating points numbers into IEEE-754 representation.',
author = 'Bora Canbula',
author_email = '[email protected]',
url = 'https://github.com/canbula/ieee754',
download_url = 'https://github.com/canbula/ieee754/archive/v_01.tar.gz',
keywords = ['IEEE-754', 'binary', 'floating-points', 'binary-representation'],
install_requires=[
'numpy',
],
classifiers=[
'Development Status :: 3 - Alpha', # "3 - Alpha", "4 - Beta" or "5 - Production/Stable"
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Mathematics',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
)

0 comments on commit 96843cf

Please sign in to comment.