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-22 19:54:24 +00:00
|
|
|
version='1.6',
|
2017-05-17 18:42:22 +00:00
|
|
|
author='Brett Smith',
|
|
|
|
author_email='brettcsmith@brettcsmith.org',
|
|
|
|
license='GNU AGPLv3+',
|
2017-05-17 21:21:43 +00:00
|
|
|
|
2017-05-17 21:38:45 +00:00
|
|
|
install_requires=['babel'],
|
2017-05-17 21:21:43 +00:00
|
|
|
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'],
|
|
|
|
},
|
|
|
|
)
|