Fix metadata

This commit is contained in:
Antonio J. Delgado 2022-06-14 08:43:03 +03:00
parent bb8ebc08dc
commit b440c1ebe8
4 changed files with 32 additions and 2 deletions

1
0.0.2 Normal file
View file

@ -0,0 +1 @@
Defaulting to user installation because normal site-packages is not writeable

3
=0.0.2 Normal file
View file

@ -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)

View file

@ -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"

View file

@ -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"]
)