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',
|
2020-06-23 18:05:14 +00:00
|
|
|
packages=setuptools.find_packages(),
|
2017-11-21 02:48:32 +00:00
|
|
|
install_requires = [
|
2020-06-23 18:05:14 +00:00
|
|
|
'inflect',
|
|
|
|
'mistune',
|
|
|
|
'colorama',
|
2020-10-29 15:05:57 +00:00
|
|
|
'six',
|
|
|
|
'feedgen',
|
2020-10-29 16:10:54 +00:00
|
|
|
'python-dateutil',
|
2017-11-21 02:48:32 +00:00
|
|
|
],
|
|
|
|
include_package_data = True,
|
|
|
|
entry_points = {
|
|
|
|
'console_scripts': [
|
2017-12-31 16:52:56 +00:00
|
|
|
'feels = ttbp.ttbp:main',
|
|
|
|
'ttbp = ttbp.ttbp:main',
|
2017-11-21 02:48:32 +00:00
|
|
|
]
|
|
|
|
},
|
|
|
|
)
|