forked from lucc/khard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (46 loc) · 1.65 KB
/
Copy pathsetup.py
File metadata and controls
50 lines (46 loc) · 1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# -*- coding: utf-8 -*-
# tutorials:
# - https://packaging.python.org/en/latest/distributing.html
# - https://hynek.me/articles/sharing-your-labor-of-love-pypi-quick-and-dirty/
# - https://gehrcke.de/2014/02/distributing-a-python-command-line-application/
from setuptools import setup
with open('README.md', 'rb') as f:
readme = f.read().decode("utf-8")
setup(
name='khard',
author='Eric Scheibler',
author_email='email@eric-scheibler.de',
url='https://github.com/scheibler/khard/',
description='A console address book manager',
long_description=readme,
long_description_content_type='text/markdown',
license='GPL',
keywords='vcard console addressbook',
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Topic :: Utilities",
"Topic :: Communications :: Email :: Address Book",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Intended Audience :: End Users/Desktop",
"Operating System :: POSIX",
"Programming Language :: Python :: 3 :: Only",
],
install_requires=[
'atomicwrites',
'configobj',
'ruamel.yaml',
'unidecode',
'vobject'
],
extras_require={'doc': ['sphinx', 'sphinx-autoapi',
'sphinx-autodoc-typehints']},
use_scm_version={'write_to': 'khard/version.py'},
setup_requires=['setuptools_scm'],
packages=['khard'],
entry_points={'console_scripts': ['khard = khard.khard:main']},
test_suite="test",
# we use type annotations of unset variables which needs 3.6
python_requires=">=3.7",
include_package_data=True,
)