forked from tildetown/tilde-wiki
start on python package
parent
e6a5738b0a
commit
ce5f57a6ce
|
@ -0,0 +1,27 @@
|
||||||
|
#!/usr/bin/env python
|
||||||
|
|
||||||
|
from setuptools import setup
|
||||||
|
|
||||||
|
setup(
|
||||||
|
name='tildewiki',
|
||||||
|
version='1.0.0',
|
||||||
|
description='small utility for managing a wiki a la tilde.town',
|
||||||
|
url='https://github.com/tildetown/tilde-wiki',
|
||||||
|
author='vilmibm shaksfrpease',
|
||||||
|
author_email='nks@neongrid.space',
|
||||||
|
license='GPL',
|
||||||
|
classifiers=[
|
||||||
|
'Topic :: Artistic Software',
|
||||||
|
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
|
||||||
|
],
|
||||||
|
keywords='wiki',
|
||||||
|
packages=['tildewiki'],
|
||||||
|
install_requires = ['Markdown==2.6.9',
|
||||||
|
'click==6.7',
|
||||||
|
'pygit2==0.24.1'], # matches current libgit2-dev version in ubuntu LTS
|
||||||
|
entry_points = {
|
||||||
|
'console_scripts': [
|
||||||
|
'wiki = tildewiki.main:main'
|
||||||
|
]
|
||||||
|
},
|
||||||
|
)
|
|
@ -0,0 +1,7 @@
|
||||||
|
import sys
|
||||||
|
|
||||||
|
import click
|
||||||
|
|
||||||
|
def main():
|
||||||
|
print('AWWWWWWW YISSSSS')
|
||||||
|
sys.exit(0)
|
Loading…
Reference in New Issue