Files @ 5a73d3d8f8d4
Branch filter:

Location: NPO-Accounting/oxrlib/setup.py

Brett Smith
historical: Move normalize_rate and _pretty_rate to base Formatter.

This reduces the number of method overrides to help readability,
and gets rid of the annoying format_rate/pretty_rate distinction.
#!/usr/bin/env python3

from setuptools import setup

setup(
    name='oxrlib',
    description="Library to query the Open Exchange Rates (OXR) API",
    version='2.2',
    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'],
    },
)