From 73ee09b8460114613e04d70c446a54c0e9e3c71d Mon Sep 17 00:00:00 2001 From: Marlan Perumal Date: Fri, 12 Feb 2021 22:22:41 +0200 Subject: [PATCH] published package to pypi --- Pipfile | 1 + Pipfile.lock | 4 ++-- pyproject.toml | 6 ++++++ setup.py | 5 +++-- 4 files changed, 12 insertions(+), 4 deletions(-) create mode 100644 pyproject.toml diff --git a/Pipfile b/Pipfile index 79a29e9..5cf26c4 100644 --- a/Pipfile +++ b/Pipfile @@ -21,6 +21,7 @@ keyring = "*" pytest-cov = "*" coveralls = "*" check-manifest = "*" +build = "*" [requires] python_version = "3.6" diff --git a/Pipfile.lock b/Pipfile.lock index 1b18c2f..7ebcd87 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -1,7 +1,7 @@ { "_meta": { "hash": { - "sha256": "894ba2e7a9b41d005e9176564ef066615b636cc4ff0a96d46535d5eee3fbeff7" + "sha256": "88b001962fb0d9ee6b3a3ae9609e1c511a72e01e95e85362d5a7952bb3918dfa" }, "pipfile-spec": 6, "requires": { @@ -477,7 +477,7 @@ "sha256:be64a48b158cf14ba607977fe394f838879ec8b6c104fa5fa2e2dd666ed99ca8", "sha256:f4a35cd9a7834ef54bdf2159a25ca42979bdf397f7c52b98884c51127a03a1b8" ], - "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'", + "index": "pypi", "version": "==0.2.1" }, "certifi": { diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..b5a3c46 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,6 @@ +[build-system] +requires = [ + "setuptools>=42", + "wheel" +] +build-backend = "setuptools.build_meta" \ No newline at end of file diff --git a/setup.py b/setup.py index 7703b80..c6b9193 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name="pdf_statement_reader", - version="0.1.3", + version="0.2.0", description="PDF Statement Reader", long_description=long_description, long_description_content_type="text/markdown", @@ -16,9 +16,10 @@ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "Topic :: Office/Business :: Financial", - "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ],