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