mirror of https://github.com/tildeclub/ttbp.git
35 lines
815 B
Python
35 lines
815 B
Python
#!/usr/bin/env python
|
|
|
|
from setuptools import setup
|
|
|
|
setup(
|
|
name='ttbp',
|
|
version='0.12.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=setuptools.find_packages(),
|
|
install_requires = [
|
|
'inflect',
|
|
'mistune',
|
|
'colorama',
|
|
'six',
|
|
'feedgen',
|
|
'python-dateutil',
|
|
],
|
|
include_package_data = True,
|
|
entry_points = {
|
|
'console_scripts': [
|
|
'feels = ttbp.ttbp:main',
|
|
'ttbp = ttbp.ttbp:main',
|
|
]
|
|
},
|
|
)
|