1
0
Fork 0
This repository has been archived on 2024-06-28. You can view files and clone it, but cannot push or open issues or pull requests.
PaperLibrary-old/setup.py

17 lines
303 B
Python
Raw Normal View History

2018-12-19 22:05:58 +01:00
from setuptools import setup
setup(
name='click-example-repo',
version='0.1',
py_modules=['repo'],
include_package_data=True,
install_requires=[
'click',
],
entry_points='''
[console_scripts]
repo=example:cli
paperlibrary=main:cli
''',
)