You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
540 B

# -*- coding: utf-8 -*-
from setuptools import setup
modules = \
['temp_index']
install_requires = \
['calibrestekje>=0.0.3,<0.0.4', 'reportlab>=3.6.3,<4.0.0']
setup_kwargs = {
'name': 'temp-index',
'version': '0.3.0',
'description': '',
'long_description': None,
'author': 'automatist',
'author_email': None,
'maintainer': None,
'maintainer_email': None,
'url': None,
'py_modules': modules,
'install_requires': install_requires,
'python_requires': '>=3.6,<4.0',
}
setup(**setup_kwargs)