2023-12-18 12:46:33 +01:00
|
|
|
from os import path
|
2022-03-31 18:03:42 +02:00
|
|
|
|
2020-05-29 04:16:38 +02:00
|
|
|
from setuptools import setup
|
2020-11-24 15:27:40 +01:00
|
|
|
|
|
|
|
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
|
|
|
|
2022-03-31 18:03:42 +02:00
|
|
|
with open('requirements.txt') as f:
|
|
|
|
required = f.read().splitlines()
|
|
|
|
|
|
|
|
# remove descriptions of packages
|
|
|
|
required = [i.split(' ')[0] for i in required]
|
|
|
|
|
2020-05-29 04:16:38 +02:00
|
|
|
__project__ = "inkycal"
|
2024-06-26 01:47:58 +02:00
|
|
|
__version__ = "2.0.4"
|
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"]
|
2024-06-26 01:47:58 +02:00
|
|
|
__author__ = "aceinnolab"
|
2020-05-29 04:16:38 +02:00
|
|
|
__author_email__ = "aceisace63@yahoo.com"
|
2023-06-03 16:16:07 +02:00
|
|
|
__url__ = "https://github.com/aceinnolab/Inkycal"
|
2020-05-29 04:16:38 +02:00
|
|
|
|
2022-03-31 18:03:42 +02:00
|
|
|
__install_requires__ = required
|
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(
|
2022-03-31 18:03:42 +02:00
|
|
|
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
|
|
|
)
|