You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
403 B
Python

1 year ago
#!/usr/bin/env python
from setuptools import setup, find_packages
setup (
name = 'Lazy Wiki',
version = '0.0.2',
packages = find_packages(),
include_package_data = True,
entry_points = {
'console_scripts' : [
'lazywiki=lazy_wiki.__main__:main'
]
},
install_requires = [
'sqlalchemy==1.4.42',
'bottle',
'markdown'
]
)