15 lines
253 B
Python
15 lines
253 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name="timer",
|
|
version="0.3",
|
|
author="Alexander Nigl",
|
|
py_modules=["timer"],
|
|
install_requires=[
|
|
"click",
|
|
],
|
|
entry_points={
|
|
"console_scripts": ["timer=timer:main"],
|
|
},
|
|
)
|