-
-
Notifications
You must be signed in to change notification settings - Fork 72
/
setup.py
executable file
·57 lines (51 loc) · 1.81 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
48
49
50
51
52
53
54
55
56
57
#!/usr/bin/env python3
from setuptools import setup
version = "0.1.29"
setup(
name="icalevents",
packages=["icalevents"],
install_requires=[
"httplib2",
"icalendar",
"pytz",
"datetime",
],
version=version,
description="iCal downloader and parser",
author="Martin Eigenmann",
author_email="",
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",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
],
long_description="""\
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.
""",
)