setup.py: Start script.
This commit is contained in:
parent
cff18d9d96
commit
08840e6757
1 changed files with 16 additions and 0 deletions
16
setup.py
Executable file
16
setup.py
Executable file
|
@ -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'],
|
||||||
|
},
|
||||||
|
)
|
Loading…
Reference in a new issue