diff --git a/setup.py b/setup.py new file mode 100755 index 0000000000000000000000000000000000000000..9ab874203944ae4e12ac84ad676ee605c6802935 --- /dev/null +++ b/setup.py @@ -0,0 +1,16 @@ +#!/usr/bin/env python3 + +from setuptools import setup + +setup( + name='oxrlib', + description="Library to query the Open Exchange Rates (OXR) API", + version='1.0', + author='Brett Smith', + author_email='brettcsmith@brettcsmith.org', + license='GNU AGPLv3+', + packages=['oxrlib'], + entry_points={ + 'console_scripts': ['oxrquery = oxrlib.__main__:main'], + }, +)