Files

22 lines
591 B
Python
Raw Permalink Normal View History

from setuptools import setup
def readfile(filename):
with open(filename, 'r+') as f:
return f.read()
setup(
name="QBDB",
version="1",
description="Python modules for interacting with the board database.",
long_description=readfile('README.md'),
author="Corentin Gay",
author_email="gay@adacore.com",
url="https://github.com/AdaCore/Bare_Metal_Project_Generator",
py_modules=['querytool'],
license=readfile('README.md'),
entry_points={
'console_scripts': [
'querytool = querytool:entry_from_cmdline'
]
},
)