2018-09-15 02:12:16 +02:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
from matemat import __version__
|
2018-05-29 21:43:38 +02:00
|
|
|
|
|
|
|
setup(
|
|
|
|
name='matemat',
|
2018-09-15 02:12:16 +02:00
|
|
|
version=__version__,
|
|
|
|
url='https://gitlab.com/s3lph/matemat',
|
|
|
|
license='MIT',
|
2018-05-29 21:43:38 +02:00
|
|
|
author='s3lph',
|
|
|
|
author_email='',
|
2018-09-15 02:12:16 +02:00
|
|
|
description='Soda machine stock-keeping webservice',
|
|
|
|
long_description='''
|
|
|
|
A web service for automated stock-keeping of a soda machine written in Python.
|
|
|
|
It provides a touch-input-friendly user interface (as most input happens through the
|
|
|
|
soda machine's touch screen).
|
|
|
|
''',
|
|
|
|
|
|
|
|
packages=find_packages(exclude=['*.test']),
|
|
|
|
python_requires='>=3.7',
|
|
|
|
install_requires=[
|
|
|
|
'file-magic',
|
|
|
|
'jinja2',
|
|
|
|
'Pillow'
|
|
|
|
],
|
|
|
|
test_loader='unittest:TestLoader',
|
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
|
|
|
'matemat = matemat.__main__:main'
|
|
|
|
]
|
|
|
|
}
|
2018-05-29 21:43:38 +02:00
|
|
|
)
|