forked from helgeerbe/picframe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (45 loc) · 1.55 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
47
from setuptools import setup, find_packages
from glob import glob
import versioneer
# read the contents of your README file
import os
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(name='picframe',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='Picture frame viewer powered by raspberry with homeassistant integration',
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Topic :: Multimedia :: Graphics :: Viewers',
],
keywords='picframe viewer raspberry raspi homeassistant hass',
url='https://github.com/helgeerbe/picframe',
author='Paddy Gaunt, Jeff Godfrey, Helge Erbe',
author_email='[email protected]',
license='MIT',
packages=find_packages(exclude=("test")),
package_data={ '': [
'data/*', 'data/**/*',
'config/*', 'config/**/*',
'html/*', 'html/**/*']},
install_requires=[
'Pillow>=9.0.0',
'ExifRead',
'pi3d>=2.49',
'PyYAML',
'paho-mqtt',
'IPTCInfo3',
'numpy',
'ninepatch'
],
entry_points = {
'console_scripts': ['picframe=picframe.start:main']
},
include_package_data=True,
zip_safe=False)