2020-05-29 04:16:38 +02:00
|
|
|
from setuptools import setup
|
2020-11-24 15:27:40 +01:00
|
|
|
from os import path
|
|
|
|
|
|
|
|
this_directory = path.abspath(path.dirname(__file__))
|
|
|
|
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
|
|
|
|
long_description = f.read()
|
2020-05-29 04:16:38 +02:00
|
|
|
|
|
|
|
__project__ = "inkycal"
|
2020-11-10 22:48:04 +01:00
|
|
|
__version__ = "2.0.0"
|
2020-12-06 23:26:17 +01:00
|
|
|
__description__ = "Inkycal is a python3 software for syncing icalendar events, weather and news on selected E-Paper displays"
|
2020-05-29 04:16:38 +02:00
|
|
|
__packages__ = ["inkycal"]
|
|
|
|
__author__ = "aceisace"
|
|
|
|
__author_email__ = "aceisace63@yahoo.com"
|
2020-11-24 15:27:40 +01:00
|
|
|
__url__ = "https://github.com/aceisace/Inkycal"
|
2020-05-29 04:16:38 +02:00
|
|
|
|
2020-11-12 10:22:34 +01:00
|
|
|
__install_requires__ = ['pyowm==3.1.1', # weather
|
2020-09-12 00:50:51 +02:00
|
|
|
'Pillow>=7.1.1' , # imaging
|
2020-05-29 04:16:38 +02:00
|
|
|
'icalendar==4.0.6', # iCalendar parsing
|
2020-06-17 21:19:20 +02:00
|
|
|
'recurring-ical-events==0.1.17b0',# parse recurring events
|
2021-11-11 13:26:49 +01:00
|
|
|
'feedparser==6.0.8', # RSS-feeds
|
2020-11-25 20:55:02 +01:00
|
|
|
# 'numpy>=1.18.2', # image pre-processing -> removed for issues with rpi os
|
2021-02-26 21:54:15 +01:00
|
|
|
'arrow==0.17.0', # time handling
|
2020-11-11 11:26:01 +01:00
|
|
|
'Flask==1.1.2', # webserver
|
|
|
|
'Flask-WTF==0.14.3', # webforms
|
2020-11-21 16:18:41 +01:00
|
|
|
'todoist-python==8.1.2', # todoist api
|
2021-07-11 11:26:05 +02:00
|
|
|
'yfinance>=0.1.62', # yahoo stocks
|
2021-07-11 13:09:04 +02:00
|
|
|
'matplotlib==3.4.2' # plotting
|
2020-05-29 04:16:38 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
__classifiers__ = [
|
2020-11-24 15:27:40 +01:00
|
|
|
"Development Status :: 4 - Beta",
|
2020-05-29 04:16:38 +02:00
|
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
|
|
"Intended Audience :: Education",
|
2020-11-24 15:27:40 +01:00
|
|
|
"Natural Language :: English",
|
2020-05-29 04:16:38 +02:00
|
|
|
"Programming Language :: Python :: 3 :: Only",
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name = __project__,
|
|
|
|
version = __version__,
|
|
|
|
description = __description__,
|
|
|
|
packages = __packages__,
|
|
|
|
author = __author__,
|
|
|
|
author_email = __author_email__,
|
|
|
|
url = __url__,
|
|
|
|
install_requires = __install_requires__,
|
|
|
|
classifiers = __classifiers__,
|
2020-11-24 15:27:40 +01:00
|
|
|
long_description=long_description,
|
|
|
|
long_description_content_type='text/markdown',
|
2020-05-29 04:16:38 +02:00
|
|
|
)
|