-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
34 lines (32 loc) · 1.08 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
from distutils.core import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="ieee754",
packages=["ieee754"],
version="0.11",
license="MIT",
description="A Python module which converts floating points numbers into IEEE-754 representation.",
long_description=long_description,
long_description_content_type="text/markdown",
author="Bora Canbula",
author_email="[email protected]",
url="https://github.com/canbula/ieee754",
download_url="https://github.com/canbula/ieee754/archive/refs/tags/v_010.tar.gz",
keywords=[
"IEEE-754",
"precisions",
"double-precision",
"binary",
"floating-points",
"binary-representation",
],
install_requires=[],
classifiers=[
"Development Status :: 4 - Beta", # "3 - Alpha", "4 - Beta" or "5 - Production/Stable"
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Mathematics",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
],
)