Skip to content

Commit

Permalink
ver 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidHo666 committed May 21, 2023
1 parent f385a4f commit 277ba4b
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
from setuptools import find_packages, setup

with open("README.md", "r") as fh:
long_description = fh.read()

setup(
name="printstructure",
packages=find_packages(include=["printstructure"]),
version="0.1.1",
long_description=long_description,
long_description_content_type="text/markdown",
description="A Python library that can elegantly print out complex data structures",
url="https://github.com/DavidHo666/print-structure",
author="Dawei He",
install_requires=["tabulate"],
setup_requires=["pytest-runner"],
tests_require=["pytest"],
test_suite="tests",
)

0 comments on commit 277ba4b

Please sign in to comment.