-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 752 Bytes
/
setup.py
File metadata and controls
20 lines (19 loc) · 752 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup, find_packages
setup(name = 'pytknvim',
version='0.1.6',
description = 'tkinter text widget using neovim',
url = 'https://github.com/timeyyy/pytknvim',
author='timeyyy',
author_email='tim_eichler@hotmail.com',
license='BSD3',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',],
keywords = 'tkinter text neovim vim edit',
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
install_requires=['neovim>=0.1.3'],
entry_points = {
'console_scripts': [
'pytknvim=pytknvim.tk_ui:main',],},)