oxrlib/setup.py

22 lines
508 B
Python
Raw Normal View History

2017-05-17 18:42:22 +00:00
#!/usr/bin/env python3
from setuptools import setup
setup(
name='oxrlib',
description="Library to query the Open Exchange Rates (OXR) API",
2017-06-09 17:22:37 +00:00
version='1.5',
2017-05-17 18:42:22 +00:00
author='Brett Smith',
author_email='brettcsmith@brettcsmith.org',
license='GNU AGPLv3+',
install_requires=['babel'],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
2017-06-01 18:01:11 +00:00
packages=['oxrlib', 'oxrlib.commands'],
2017-05-17 18:42:22 +00:00
entry_points={
'console_scripts': ['oxrquery = oxrlib.__main__:main'],
},
)