Changeset - 17ff9a8b71d5
[Not reviewed]
0 1 0
Brett Smith - 7 years ago 2017-06-01 18:01:11
brettcsmith@brettcsmith.org
setup.py: Add oxrlib.commands package.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
setup.py
Show inline comments
...
 
@@ -5,17 +5,17 @@ from setuptools import setup
 
setup(
 
    name='oxrlib',
 
    description="Library to query the Open Exchange Rates (OXR) API",
 
    version='1.2',
 
    author='Brett Smith',
 
    author_email='brettcsmith@brettcsmith.org',
 
    license='GNU AGPLv3+',
 

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

	
 
    packages=['oxrlib'],
 
    packages=['oxrlib', 'oxrlib.commands'],
 
    entry_points={
 
        'console_scripts': ['oxrquery = oxrlib.__main__:main'],
 
    },
 
)
0 comments (0 inline, 0 general)