mirror of
https://github.com/ksherlock/prez.git
synced 2024-11-26 15:49:21 +00:00
11 lines
172 B
Python
11 lines
172 B
Python
|
from setuptools import setup
|
||
|
|
||
|
setup(
|
||
|
name = 'prez',
|
||
|
packages = ['prez'],
|
||
|
author = 'Kelvin Sherlock',
|
||
|
entry_points = {
|
||
|
'console_scripts': ['prez=prez.cli:main']
|
||
|
|
||
|
},
|
||
|
)
|