Skip to content

Commit 83f7d3f

Browse files
committed
Update for python package installation
1 parent c8b274a commit 83f7d3f

File tree

3 files changed

+15
-11
lines changed

3 files changed

+15
-11
lines changed

Diff for: README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,16 @@
33
Module for converting 2D Python lists to a fancy ASCII/Unicode tables
44

55
- [table2ascii](#table2ascii)
6+
- [📥 Installation](#-installation)
67
- [🧑‍💻 Usage](#-usage)
78
- [⚙️ Options](#️-options)
89
- [🧰 Development](#-development)
910

10-
<!--
11+
1112
## 📥 Installation
1213

1314
``pip install table2ascii``
14-
-->
15+
1516

1617
## 🧑‍💻 Usage
1718

Diff for: pyproject.toml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[build-system]
2+
requires = [
3+
"setuptools>=42",
4+
"wheel"
5+
]
6+
build-backend = "setuptools.build_meta"

Diff for: setup.py

+6-9
Original file line numberDiff line numberDiff line change
@@ -59,25 +59,22 @@ def run(self):
5959

6060
setup(
6161
name="table2ascii",
62-
version="1.0.0",
62+
version="0.0.1",
6363
author="Jonah Lawrence",
6464
author_email="[email protected]",
6565
description="Convert 2D Python lists into Unicode/Ascii tables",
6666
long_description=long_description,
6767
long_description_content_type="text/markdown",
6868
url="https://github.com/DenverCoder1/table2ascii",
69+
project_urls={
70+
"Bug Tracker": "https://github.com/DenverCoder1/table2ascii/issues",
71+
},
6972
packages=["table2ascii"],
7073
classifiers=[
71-
"Environment :: Web Environment",
72-
"Intended Audience :: Developers",
74+
"Programming Language :: Python :: 3",
7375
"License :: OSI Approved :: MIT License",
7476
"Operating System :: OS Independent",
75-
"Programming Language :: Python :: 2.5",
76-
"Programming Language :: Python :: 2.6",
77-
"Programming Language :: Python :: 2.7",
78-
"Programming Language :: Python :: 3.6",
79-
"Programming Language :: Python :: 3.7",
80-
"Programming Language :: Python :: 3.8",
77+
"Intended Audience :: Developers",
8178
"Topic :: Utilities",
8279
],
8380
python_requires=">=3.6",

0 commit comments

Comments
 (0)