Files
ttbp/setup.py
Vincent Zeng 9d7b470b2a cleaning up settings and version checker
this commit picks up from some of my broken local repos; it improves the config
validator run at startup, handles publishing toggling more correctly, and
includes version updating to 0.10.2
2017-12-31 11:52:56 -05:00

32 lines
757 B
Python

#!/usr/bin/env python
from setuptools import setup
setup(
name='ttbp',
version='0.10.2',
description='command line social blogging tool used on tilde.town',
url='https://github.com/modgethanc/ttbp',
author='~endorphant',
author_email='endorphant@tilde.town',
license='MIT',
classifiers=[
'Topic :: Artistic Software',
'License :: OSI Approved :: MIT License',
],
keywords='blog',
packages=['ttbp'],
install_requires = [
'inflect==0.2.5',
'mistune==0.8.1',
'colorama==0.3.9',
],
include_package_data = True,
entry_points = {
'console_scripts': [
'feels = ttbp.ttbp:main',
'ttbp = ttbp.ttbp:main',
]
},
)