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.
|
import setuptools
|
|
|
|
setuptools.setup(
|
|
name='lark',
|
|
version='0.1',
|
|
py_modules=['lark'],
|
|
install_requires=[
|
|
'click',
|
|
'sqlalchemy',
|
|
'xdg',],
|
|
entry_points='''
|
|
[console_scripts]
|
|
lark=lark.cli:cli_init
|
|
''',
|
|
)
|