forked from skarim/vobject
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·69 lines (60 loc) · 2.39 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
58
59
60
61
62
63
64
65
66
67
68
69
"""
VObject: module for reading vCard and vCalendar files
Description
-----------
Parses iCalendar and vCard files into Python data structures, decoding the
relevant encodings. Also serializes vobject data structures to iCalendar, vCard,
or (experimentally) hCalendar unicode strings.
Requirements
------------
Requires python 2.7 or later, dateutil 2.4.0 or later.
Recent changes
--------------
- Python 3 compatible
- Updated version of dateutil (2.4.0 and above)
- More comprehensive unit tests available in tests.py
- Performance improvements in iteration
- Test files are included in PyPI download package
For older changes, see
- http://eventable.github.io/vobject/#release-history or
- http://vobject.skyhouseconsulting.com/history.html
"""
from setuptools import setup, find_packages
doclines = (__doc__ or '').splitlines()
setup(name = "vobject",
version = "0.9.2",
author = "Jeffrey Harris",
author_email = "[email protected]",
maintainer = "Sameen Karim",
maintainer_email="[email protected]",
license = "Apache",
zip_safe = True,
url = "http://eventable.github.io/vobject/",
download_url = 'https://github.com/eventable/vobject/tarball/0.9.1',
bugtrack_url = "https://github.com/eventable/vobject/issues",
entry_points = {
'console_scripts': [
'ics_diff = vobject.ics_diff:main',
'change_tz = vobject.change_tz:main'
]
},
include_package_data = True,
install_requires = ['python-dateutil >= 2.4.0'],
platforms = ["any"],
packages = find_packages(),
description = "A full-featured Python package for parsing and creating "
"iCalendar and vCard files",
long_description = "\n".join(doclines[2:]),
keywords = ['vobject', 'icalendar', 'vcard', 'ics', 'vcs', 'hcalendar'],
classifiers = """
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Topic :: Text Processing""".strip().splitlines()
)