root/software/hbkif/setup.py @ c53be556
| d20914d0 | David Sorber | from setuptools import setup, find_packages
|
|
# Use implicit ryft namespace package to keep things organized
|
|||
setup(
|
|||
name='hbkif',
|
|||
version='0.1.0',
|
|||
description='Handbrake web interface',
|
|||
packages=['hbkif', 'hbkif.controllers'],
|
|||
# ~ packages=find_packages('hbkif'),
|
|||
# ~ entry_points = {
|
|||
# ~ 'console_scripts': [
|
|||
# ~ 'docsim_daemon = ryft.xrest.docsim_daemon:main',
|
|||
# ~ ]
|
|||
# ~ },
|
|||
zip_safe=False,
|
|||
)
|