ttbp/setup.py

33 lines
771 B
Python
Raw Permalink Normal View History

2017-11-20 18:48:32 -08:00
#!/usr/bin/env python
from setuptools import setup
setup(
name='ttbp',
2019-07-10 00:37:26 -04:00
version='0.12.2',
2017-11-20 18:48:32 -08:00
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',
2017-11-20 22:03:34 -08:00
'mistune==0.8.1',
'colorama==0.3.9',
2018-02-28 17:31:31 -05:00
'six'
2017-11-20 18:48:32 -08:00
],
include_package_data = True,
entry_points = {
'console_scripts': [
'feels = ttbp.ttbp:main',
'ttbp = ttbp.ttbp:main',
2017-11-20 18:48:32 -08:00
]
},
)