Changeset - 08840e6757a1
[Not reviewed]
0 0 1
Brett Smith - 7 years ago 2017-05-17 18:42:22
brettcsmith@brettcsmith.org
setup.py: Start script.
1 file changed with 16 insertions and 0 deletions:
0 comments (0 inline, 0 general)
setup.py
Show inline comments
 
new file 100755
 
#!/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'],
 
    },
 
)
0 comments (0 inline, 0 general)