-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (36 loc) · 1.17 KB
/
Copy pathsetup.py
File metadata and controls
39 lines (36 loc) · 1.17 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
from setuptools import setup, find_packages
import sys, os
ROOT = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(ROOT, 'README.rst')).read()
version = '0.1.2'
setup(name='findcmd',
version=version,
description="A command line tool for searching commands",
long_description=README,
classifiers=[
'Environment :: Console',
'Operating System :: MacOS',
'Operating System :: POSIX :: Linux',
'Operating System :: POSIX :: BSD',
'Operating System :: Unix',
'Programming Language :: Python',
'Topic :: System :: Systems Administration',
'Topic :: Utilities',
],
keywords='console sysutils',
author='Xupeng Yun',
author_email='xupeng@xupeng.me',
url='https://github.com/xupeng/findcmd',
license='Apache-2.0',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
# -*- Extra requirements: -*-
],
entry_points={
'console_scripts': [
'findcmd = findcmd.findcmd:main',
]
},
)