12345678910111213141516 |
- from setuptools import setup, find_packages
-
- setup(
- name='lizard',
- version='1.0',
- packages=['lizard'],
- url='https://git.teknik.io/abrax/lizard',
- license='MIT',
- author='abrax',
- author_email='abrax@teknik.io',
- description='lizard, the 8ch monitor',
-
- entry_points=dict(console_scripts=['lizard = lizard:main']),
-
- install_requires=['requests', 'peewee', 'humanize']
- )
|