prez/setup.py

11 lines
172 B
Python
Raw Permalink Normal View History

2023-12-31 23:21:22 +00:00
from setuptools import setup
setup(
name = 'prez',
packages = ['prez'],
author = 'Kelvin Sherlock',
entry_points = {
'console_scripts': ['prez=prez.cli:main']
},
)