-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·32 lines (23 loc) · 760 Bytes
/
setup.py
File metadata and controls
executable file
·32 lines (23 loc) · 760 Bytes
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
#!/usr/bin/env python3
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
name="num-radix",
version="1.0.2",
author="2sh",
author_email="contact@2sh.me",
description="Number radix/base encoding, decoding and formatting",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/2sh/num-radix",
packages=["num_radix"],
python_requires='>=3',
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Mathematics"
),
entry_points={"console_scripts":["num-radix=num_radix:_main"]}
)