oxrlib/setup.py
Brett Smith 385a492ae7 config: More flexible date parsing.
* Accept partial dates, filling in the current year and month as needed.
* Accept more separators.
2017-06-08 09:52:47 -04:00

21 lines
508 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.3',
author='Brett Smith',
author_email='brettcsmith@brettcsmith.org',
license='GNU AGPLv3+',
install_requires=['babel'],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
packages=['oxrlib', 'oxrlib.commands'],
entry_points={
'console_scripts': ['oxrquery = oxrlib.__main__:main'],
},
)