You've already forked startup-gen
mirror of
https://github.com/AdaCore/startup-gen.git
synced 2026-02-12 13:02:12 -08:00
22 lines
591 B
Python
22 lines
591 B
Python
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'
|
|
]
|
|
},
|
|
)
|