-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
46 lines (43 loc) · 1.71 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
from setuptools import setup, find_packages
with open("README.md") as f:
readme = f.read()
with open("requirements.txt") as f:
requirements = f.readlines()
setup(
name="elabftwqrprint",
version="0.1.0",
description=("Make QR code stickers for elabFTW database"
" entries and print them with Brother label "
"printers."),
url='https://github.com/din14970/elabftwqrprint',
author='Niels Cautaerts',
author_email='[email protected]',
license='GPL-3.0',
long_description=readme,
long_description_content_type="text/markdown",
classifiers=['Topic :: Scientific/Engineering',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.8'],
keywords=[
'e-lab',
'provenance',
'lab management',
],
packages=find_packages(),
entry_points={
'console_scripts': [
'configure_elabftw = elabftwqrprint.configure_elabftw:main',
'configure_printer = elabftwqrprint.configure_printer:main',
'create_qr_sticker = elabftwqrprint.create_qr_sticker:main',
'create_sticker_elab_item = elabftwqrprint.create_sticker_elab_item:main',
'list_elab_items = elabftwqrprint.list_elab_items:main',
'print_sticker_elab_item = elabftwqrprint.print_sticker_elab_item:main',
'print_sticker = elabftwqrprint.print_sticker:main',
'find_items = elabftwqrprint.find_items:main'
],
},
package_data={'': ['elabftwqrprint/defaultfont.ttf']},
include_package_data=True,
install_requires=requirements,
)