-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (35 loc) · 1.12 KB
/
setup.py
File metadata and controls
39 lines (35 loc) · 1.12 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
#!/usr/bin/env python
from setuptools import setup, find_packages
def long_desc():
with open('README.md') as f:
return f.read()
setup(
name='shellish',
version='5.1',
description='A framework for CLI/shell programs.',
author='Justin Mayfield',
author_email='tooker@gmail.com',
url='https://github.com/mayfield/shellish/',
license='MIT',
long_description=long_desc(),
long_description_content_type='text/markdown',
packages=find_packages(),
install_requires=['markdown2'],
entry_points={
'console_scripts': [
'csvpretty=shellish.tools.csvpretty:csvpretty',
'mdcat=shellish.tools.mdcat:mdcat'
]
},
classifiers=[
'Development Status :: 6 - Mature',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.11',
'Topic :: Software Development :: Libraries',
'Topic :: System :: Shells',
]
)