oxrlib/setup.py
2017-05-17 14:42:22 -04:00

16 lines
387 B
Python
Executable file

#!/usr/bin/env python3
from setuptools import setup
setup(
name='oxrlib',
description="Library to query the Open Exchange Rates (OXR) API",
version='1.0',
author='Brett Smith',
author_email='brettcsmith@brettcsmith.org',
license='GNU AGPLv3+',
packages=['oxrlib'],
entry_points={
'console_scripts': ['oxrquery = oxrlib.__main__:main'],
},
)