-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
40 lines (39 loc) · 1.4 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
from setuptools import setup
# read the contents of your README file
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(name='nfasd',
version='2.0',
description='fasd for neovim',
keywords='fasd neovim nvim nyaovim jumplist',
url='http://github.com/haifengkao/nfasd',
author='Hai Feng Kao',
author_email='[email protected]',
license='MIT',
long_description=long_description,
long_description_content_type="text/x-rst",
packages=['nfasd'],
scripts=['bin/nfasd', 'bin/register-python-argcomplete-menu'],
install_requires=[
'argcomplete',
'msgpack-python',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Environment :: MacOS X',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS',
'Operating System :: Unix',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: System :: Shells',
'Topic :: Utilities',
],
zip_safe=False)