tilde-wiki/setup.py

29 lines
840 B
Python
Raw Permalink Normal View History

2017-08-29 07:33:03 +00:00
#!/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',
2017-09-23 08:45:45 +00:00
'GitPython==2.1.5',
2017-08-29 07:33:03 +00:00
'click==6.7',
2019-01-13 04:17:38 +00:00
'pygit2==0.27.1'], # matches current libgit2-dev version in ubuntu LTS
2017-08-29 07:33:03 +00:00
entry_points = {
'console_scripts': [
'wiki = tildewiki.main:main'
]
},
)