forked from Pu-Anlai/base16-builder-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (27 loc) · 1.02 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
from setuptools import setup
setup(
name='pybase16-builder',
version='0.1.8',
description='A base16 colorscheme builder for Python',
long_description=open('README.rst').read(),
url='https://github.com/InspectorMustache/pybase16-builder',
packages=['pybase16_builder'],
author='Pu Anlai',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: End Users/Desktop',
'Topic :: Other/Nonlisted Topic',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3 :: Only'
],
keywords='base16',
install_requires=['pystache', 'pyyaml'],
python_requires='>=3.4',
entry_points={
'console_scripts': [
'pybase16 = pybase16_builder.cli:run'
]
}
)