Files @ 5b7f2b92a1f9
Branch filter:

Location: oxrlib-fork/setup.py

Brett Smith
rate: Make sure to parse ints as Decimal objects too.
#!/usr/bin/env python3

from setuptools import setup

setup(
    name='oxrlib',
    description="Library to query the Open Exchange Rates (OXR) API",
    version='1.1',
    author='Brett Smith',
    author_email='brettcsmith@brettcsmith.org',
    license='GNU AGPLv3+',

    install_requires=['babel'],
    setup_requires=['pytest-runner'],
    tests_require=['pytest'],

    packages=['oxrlib'],
    entry_points={
        'console_scripts': ['oxrquery = oxrlib.__main__:main'],
    },
)