mirror of
https://github.com/tildeclub/ttbp.git
synced 2026-06-19 03:09:25 +00:00
create setup.py and ttbp package
This commit is contained in:
30
setup.py
Normal file
30
setup.py
Normal file
@@ -0,0 +1,30 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
from setuptools import setup
|
||||
|
||||
setup(
|
||||
name='ttbp',
|
||||
version='0.10.0',
|
||||
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'
|
||||
],
|
||||
include_package_data = True,
|
||||
entry_points = {
|
||||
'console_scripts': [
|
||||
'feels = ttbp.ttbp:start',
|
||||
'ttbp = ttbp.ttbp:start',
|
||||
]
|
||||
},
|
||||
)
|
||||
Reference in New Issue
Block a user