mise en place des scripts pour la génération du package python et deb

This commit is contained in:
Vincent BENOIT
2022-11-15 14:36:48 +01:00
parent 5ea494e645
commit f6c37733a0
16 changed files with 1973 additions and 218 deletions

38
setup.py Normal file
View File

@@ -0,0 +1,38 @@
import io, os
from setuptools import find_packages, setup
def read(*paths, **kwargs):
"""Read the contents of a text file safely.
>>> read("project_name", "VERSION")
'0.1.0'
>>> read("README.md")
...
"""
content = ""
with io.open(
os.path.join(os.path.dirname(__file__), *paths),
encoding=kwargs.get("encoding", "utf8"),
) as open_file:
content = open_file.read().strip()
return content
def read_requirements(path):
ret = []
with open(path, "r") as f:
ret = f.read().splitlines()
return ret
setup(
name='kineintercom',
version=read("src", "VERSION"),
author='vincent.benoit',
author_email='vincent.benoit@benserv.fr',
description='Processus d\'envoi de code DTMF via le module GSM',
long_description=read("README.md"),
long_description_content_type="text/markdown",
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=read_requirements("requirements.txt")
)