ttbp/setup.py

33 lines
771 B
Python
Raw Normal View History

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