-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (29 loc) · 947 Bytes
/
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
from os import path
from setuptools import find_namespace_packages
from setuptools import setup
def read(fname):
return open(path.join(path.dirname(__file__), fname)).read()
setup(
name="attendance",
package_dir={"": "src"},
packages=find_namespace_packages("src"),
install_requires=["pyserial", "Pillow", "luma.oled",
"RPi.GPIO", "requests"],
entry_points={
"console_scripts": [
"attendance_recorder = attendance.attendance_recorder:main"
]
},
package_data={
"attendance.resources": ["*.ttf", "*.ini"]
},
version="0.0.1",
author="Jakub Batel",
author_email="[email protected]",
description=(
"Application which record attendance using ISIC card and sends the"
" results to the Information System of the Masaryk University (IS MUNI)"),
license="MIT",
keywords="attendance recorder muni",
url="",
)