-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
executable file
·60 lines (50 loc) · 2.1 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
"""
Python-Card-Me parses iCalendar and vCard files into Python data structures,
decoding the relevant encodings.
It can also serialize vobject data structures to iCalendar, vCard, or hCalendar unicode strings.
It is a substantially reworked version of Vobject, updated for python3, with other improvements.
Requirements
------------
Requires Python 2.7 or later, dateutil (http://labix.org/python-dateutil) 2.4 or later, and six.
For older changes, see
- http://vobject.skyhouseconsulting.com/history.html or
- http://websvn.osafoundation.org/listing.php?repname=vobject&path=/trunk/
"""
from setuptools import setup, find_packages
# Docstring may not be present in optimized Python run mode, so if the
# docstring is missing just use empty strings so install still works
doclines = (__doc__ or '').splitlines() or ['', '']
setup(name="python-card-me",
version="0.9.3",
author="Tim Baxter, Jeffrey Harris",
author_email="[email protected]",
license="Apache",
zip_safe=True,
url="https://github.com/tBaxter/python-card-me",
entry_points={
'console_scripts': [
'ics_diff = card_me.ics_diff:main',
'change_tz = card_me.change_tz:main'
]
},
include_package_data=True,
install_requires=['python-dateutil'],
platforms=["any"],
packages=find_packages(),
description=doclines[0],
long_description="\n".join(doclines[2:]),
classifiers="""
Development Status :: 5 - Production/Stable
Environment :: Console
License :: OSI Approved :: BSD License
Intended Audience :: Developers
Natural Language :: English
Programming Language :: Python
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Operating System :: OS Independent
Topic :: Text Processing""".strip().splitlines()
)