-
Notifications
You must be signed in to change notification settings - Fork 35
/
setup.py
38 lines (34 loc) · 1.05 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
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='click-man',
version='0.4.2',
url='https://github.com/click-contrib/click-man',
license='MIT',
description='Generate man pages for click based CLI applications',
long_description=read('README.md'),
long_description_content_type='text/markdown',
author='Timo Furrer',
author_email='[email protected]',
install_requires=[
'click',
'setuptools',
],
packages=find_packages(exclude=('tests', )),
entry_points={
'console_scripts': [
'click-man = click_man.__main__:cli',
]
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Documentation',
],
)