From 7ccecc7aa1a6e115360e9265d76972152f5c1012 Mon Sep 17 00:00:00 2001 From: Will Dean Date: Sun, 15 May 2022 17:00:21 -0500 Subject: [PATCH] uploaded 0.0.1 to pypi --- README.md | 8 ++++++++ pyproject.toml | 3 +++ setup.cfg | 2 ++ setup.py | 2 +- 4 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 pyproject.toml create mode 100644 setup.cfg diff --git a/README.md b/README.md index afa0297..81b165d 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,14 @@ https://www.transitchicago.com/developers/ttdocs/) This API requires a key which can be easily received [here](https://www.transitchicago.com/developers/traintrackerapply/). Follow the `.env.example` file for setting. +## Installation + +This package is available on `pip`. Install with: + +```bash +$ pip install python-cta +``` + ## Getting Started ```python diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..b0f0765 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["setuptools>=42"] +build-backend = "setuptools.build_meta" diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..b90f6ad --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[metadata] +description_file=README.md diff --git a/setup.py b/setup.py index aafa20b..161fb3d 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ README = (HERE / "README.md").read_text() setup( - name="cta", + name="python-cta", version=__version__, author="William Dean", author_email="wd60622@gmail.com",