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.

30 lines
631 B
Python

#!/usr/bin/env python
from setuptools import setup, find_packages
setup (
name = 'Lazy Wiki',
version = '0.0.3',
packages = find_packages(),
include_package_data = True,
entry_points = {
'console_scripts' : [
'lazywiki=lazy_wiki.__main__:main'
]
},
install_requires = [
'sqlalchemy==1.4.42',
'bottle',
'markdown'
],
data_files = [
('/',
[
'lazy_wiki/static/css/view.css',
'lazy_wiki/static/css/reset.css',
'lazy_wiki/static/img/favicon.ico'
]
)
]
)