From b440c1ebe87efb57a5759138bb96914f5bc655a8 Mon Sep 17 00:00:00 2001 From: "Antonio J. Delgado" Date: Tue, 14 Jun 2022 08:43:03 +0300 Subject: [PATCH] Fix metadata --- 0.0.2 | 1 + =0.0.2 | 3 +++ pyproject.toml | 24 ++++++++++++++++++++++++ setup.py | 6 ++++-- 4 files changed, 32 insertions(+), 2 deletions(-) create mode 100644 0.0.2 create mode 100644 =0.0.2 diff --git a/0.0.2 b/0.0.2 new file mode 100644 index 0000000..7036bcd --- /dev/null +++ b/0.0.2 @@ -0,0 +1 @@ +Defaulting to user installation because normal site-packages is not writeable diff --git a/=0.0.2 b/=0.0.2 new file mode 100644 index 0000000..ae10628 --- /dev/null +++ b/=0.0.2 @@ -0,0 +1,3 @@ +Defaulting to user installation because normal site-packages is not writeable +Requirement already satisfied: find_duplicate_contacts in /usr/local/lib/python3.10/dist-packages/find_duplicate_contacts-0.0.1-py3.10.egg (0.0.1) +Requirement already satisfied: requests in /usr/lib/python3/dist-packages (from find_duplicate_contacts) (2.25.1) diff --git a/pyproject.toml b/pyproject.toml index 9787c3b..8cbdb11 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,3 +1,27 @@ [build-system] requires = ["setuptools", "wheel"] build-backend = "setuptools.build_meta" + +[project.urls] +Homepage = "https://github.com/ajdelgado/find_duplicate_contacts" + +[project] +name = "find_duplicate_contacts" +version = "0.0.3" +description = "Find duplicate contacts in vCard files" +readme = "README.md" +authors = [{ name = "Antonio J. Delgado", email = "TXj6QGdwejbTD1iWAj2ws9pnV@susurrando.com" }] +license = { file = "LICENSE" } +classifiers = [ + "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", + "Programming Language :: Python", + "Programming Language :: Python :: 3", +] +keywords = ["vCard", "contacts", "duplicates"] +dependencies = [ + "vobject", + "click", + "click_config_file", + 'deepdiff', +] +requires-python = ">=3" \ No newline at end of file diff --git a/setup.py b/setup.py index 961b326..1b86202 100644 --- a/setup.py +++ b/setup.py @@ -2,11 +2,13 @@ import setuptools setuptools.setup( scripts=['find_duplicate_contacts/find_duplicate_contacts.py'], author="Antonio J. Delgado", - version='0.0.1', + version='0.0.3', name='find_duplicate_contacts', author_email="", url="", description="Find duplicate contacts in vCard files", + long_description="README.md", + long_description_content_type="text/markdown", license="GPLv3", - #keywords=["my", "script", "does", "things"] + keywords=["vCard", "contacts", "duplicates"] )