feat: prepare PyPi upload

This commit is contained in:
relikd
2023-02-21 20:53:43 +01:00
parent 4e9e70f341
commit f7ea272c7d
8 changed files with 125 additions and 2 deletions

56
setup.py Normal file
View File

@@ -0,0 +1,56 @@
#!/usr/bin/env python3
from setuptools import setup
from abcddb2vcard import __doc__, __version__
with open('README.md') as fp:
longdesc = fp.read()
setup(
name='abcddb2vcard',
description=__doc__.strip(),
version=__version__,
author='relikd',
url='https://github.com/relikd/abcddb2vcard',
license='MIT',
packages=['abcddb2vcard'],
entry_points={
'console_scripts': [
'abcddb2vcard=abcddb2vcard.abcddb2vcard',
'vcard2img=abcddb2vcard.vcard2img',
]
},
long_description_content_type="text/markdown",
long_description=longdesc,
python_requires='>=3.5',
keywords=[
'abcddb',
'abcd',
'address book',
'vcard',
'contacts',
'converter',
'export',
'backup',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Environment :: MacOS X',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'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',
'Programming Language :: Python :: 3.10',
'Programming Language :: SQL',
'Topic :: Communications :: Email :: Address Book',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Archiving :: Backup',
'Topic :: Utilities',
],
)