mirror of
https://github.com/ksherlock/prez.git
synced 2024-11-22 18:31:44 +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']
|
|
|
|
},
|
|
) |