forked from lord63/tldr.py
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·38 lines (35 loc) · 1.06 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·38 lines (35 loc) · 1.06 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
#!/usr/bin/env python3
# encoding: utf-8
from setuptools import setup
with open('Readme.PyPI.md', 'r') as f:
long_description = f.read()
setup(
name='multi-tldr',
description='Yet another python client for tldr-pages/tldr. View tldr pages in multi repo, multi platform, any language at the same time.',
long_description=long_description,
long_description_content_type='text/markdown',
author='Phuker',
author_email='[email protected]',
url='https://github.com/Phuker/multi-tldr',
license='MIT',
keywords='tldr cli man command usage',
packages=[],
py_modules = ['tldr'],
install_requires=[
'click>=5.0',
],
include_package_data=True,
entry_points={
'console_scripts': [
'tldr=tldr:main'
]
},
classifiers=[
'Environment :: Console',
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
python_requires = '>=3.6'
)