Files @ 936237eceb32
Branch filter:

Location: NPO-Accounting/oxrlib/setup.py

Brett Smith
config: Nicer determination of default currency for converting/signing.

base defaults to USD more as an API restriction than anything else, so avoid
using it as a default setting. Instead, use the user's books denomination
or locale setting.
#!/usr/bin/env python3

from setuptools import setup

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