forked from Jonny-exe/binary-fractions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (17 loc) · 641 Bytes
/
setup.py
File metadata and controls
19 lines (17 loc) · 641 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup
classifiers = []
setup(
name="binary_fractions",
version="0.1.0",
description="A Python package for floating-point binary fractions. Do math in base 2!",
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
url="https://github.com/Jonny-exe/binary-fractions",
author="Jonny-exe",
author_email="",
license="MIT",
classifiers=classifiers,
keywords="binary fractions python python3 floating-point high-precision base-2 floating-point-arithmetic binary-fractions",
install_requires=[""],
packages=["binary_fractions"]
)