-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
28 lines (25 loc) · 821 Bytes
/
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
import setuptools
import base16_shell_preview
setuptools.setup(
name='base16_shell_preview',
version=base16_shell_preview.__version__,
description='Browse and preview Base16 Shell themes in your terminal.',
long_description=open('README.rst').read(),
author='Andrew Rabert',
author_email='[email protected]',
url='https://github.com/nvllsvm/base16-shell-preview',
license='MIT',
py_modules=['base16_shell_preview'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3'
],
entry_points={
'console_scripts': [
'base16-shell-preview=base16_shell_preview:main'
]
},
python_requires='>=3.6'
)