-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
56 lines (54 loc) · 1.83 KB
/
setup.py
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
51
52
53
54
55
56
import os.path
from setuptools import find_packages, setup
dirname = os.path.dirname(os.path.abspath(__file__))
with open(os.path.join(dirname, 'README.md')) as f:
long_description = f.read()
setup(name='vimwiki-cli',
version='1.2.0',
description='Vimwiki Command-Line Interface',
long_description=long_description,
long_description_content_type='text/markdown',
author='Steven Stallion',
author_email='[email protected]',
url='https://github.com/sstallion/vimwiki-cli',
packages=find_packages(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Text Editors',
'Topic :: Text Editors :: Documentation'
],
license='BSD-2-Clause',
keywords='cli vim vimwiki wiki',
install_requires=[
'click>=7.1',
],
entry_points={
'console_scripts': [
'vimwiki=vimwiki_cli.__main__:cli'
]
},
extras_require={
'test': [
'coverage~=5.5',
'mock~=3.0',
'pycodestyle~=2.7',
'pytest>=4.6',
'pytest-cov>=2.11'
],
'release': [
'build>=0.3.0',
'bump2version>=1.0.0',
'keepachangelog>=0.5.0'
]
})