timer/setup.py

15 lines
253 B
Python

from setuptools import setup
setup(
name="timer",
version="0.2",
author="Alexander Nigl",
py_modules=["timer"],
install_requires=[
"click",
],
entry_points={
"console_scripts": ["timer=timer:main"],
},
)