cobiz / tools /jingodf /setup.py
seawolf2357's picture
Add tools
a65138c verified
from setuptools import setup
setup(name='jingodf',
version='0.0',
license='GNU Affero GPL v3',
author = 'mete0r',
author_email = 'https://github.com/mete0r',
packages = ['jingodf'],
package_data = dict(jingodf=['schema/*']),
install_requires=['opster == 3.7'],
entry_points = {
'console_scripts': ['jingodf = jingodf:main']
})