2018-09-15 18:47:51 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
from setuptools import setup
|
|
|
|
|
2025-02-17 08:01:20 +00:00
|
|
|
version = "0.2.1"
|
2018-09-15 18:47:51 +00:00
|
|
|
|
2017-07-19 14:31:38 +00:00
|
|
|
setup(
|
2021-10-11 17:58:18 +00:00
|
|
|
name="icalevents",
|
|
|
|
packages=["icalevents"],
|
2017-07-19 20:39:25 +00:00
|
|
|
install_requires=[
|
2025-01-17 11:54:37 +00:00
|
|
|
"urllib3",
|
2017-07-19 20:39:25 +00:00
|
|
|
"icalendar",
|
|
|
|
"pytz",
|
|
|
|
"datetime",
|
|
|
|
],
|
2018-09-15 18:47:51 +00:00
|
|
|
version=version,
|
2021-10-11 17:58:18 +00:00
|
|
|
description="iCal downloader and parser",
|
2024-09-09 13:48:08 +00:00
|
|
|
author="Martin Eigenmann",
|
|
|
|
author_email="",
|
2021-10-11 17:58:18 +00:00
|
|
|
url="https://github.com/jazzband/icalevents",
|
|
|
|
download_url="https://github.com/jazzband/icalevents/archive/v"
|
|
|
|
+ version
|
|
|
|
+ ".tar.gz",
|
|
|
|
keywords=["iCal"],
|
|
|
|
classifiers=[
|
|
|
|
"Programming Language :: Python",
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Development Status :: 4 - Beta",
|
|
|
|
"Environment :: Other Environment",
|
|
|
|
"Intended Audience :: Developers",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Programming Language :: Python :: 3",
|
2024-09-09 13:48:08 +00:00
|
|
|
"Programming Language :: Python :: 3.9",
|
|
|
|
"Programming Language :: Python :: 3.10",
|
|
|
|
"Programming Language :: Python :: 3.11",
|
|
|
|
"Programming Language :: Python :: 3.12",
|
2025-01-16 00:12:26 +00:00
|
|
|
"Programming Language :: Python :: 3.13",
|
2021-10-11 17:58:18 +00:00
|
|
|
"Operating System :: OS Independent",
|
|
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
|
|
],
|
|
|
|
long_description="""\
|
2017-07-19 14:31:38 +00:00
|
|
|
iCal download, parse and query tool
|
|
|
|
-------------------------------------
|
|
|
|
|
|
|
|
Supports downloading of iCal URL or loading of iCal files, parsing the content and finding events occurring in a given
|
|
|
|
time range.
|
|
|
|
|
|
|
|
See: icalevents.icalevents.events(url=None, file=None, start=None, end=None, fix_apple=False)
|
|
|
|
|
|
|
|
This version requires Python 3 or later.
|
2018-02-09 06:37:38 +00:00
|
|
|
|
2021-10-11 17:58:18 +00:00
|
|
|
""",
|
2018-02-09 06:32:43 +00:00
|
|
|
)
|