-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (49 loc) · 1.6 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import pathlib
from setuptools import setup, find_packages
readme = pathlib.Path("readme.md").read_text()
reqs = pathlib.Path("requirements.txt").read_text()
setup(
name="SetPrecision",
version="0.2.0",
description=
"Python module providing an easy way to set the precision of a floating-point number/decimal to the desired amount of significant figures.",
url='https://github.com/schlopp96/SetPrecision',
author='schlopp96',
author_email='schloppdaddy@gmail.com',
long_description=readme,
long_description_content_type='text/markdown',
packages=find_packages(),
include_package_data=True,
install_requires=[reqs],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Utilities",
],
keywords=[
'SetPrecision',
'float',
'decimal',
'precision',
'sig',
'figs',
'significant',
'digits',
'scientific',
'notation',
'math',
'conversion',
'script',
'point',
'floating',
'scientific-notation',
])