forked from python-caldav/caldav
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·31 lines (29 loc) · 1.17 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
#!/usr/bin/python2
# -*- encoding: utf-8 -*-
from setuptools import setup, find_packages
version = '0.5.0'
if __name__ == '__main__':
setup(
name='caldav',
version=version,
description="CalDAV (RFC4791) client library",
classifiers=["Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General "
"Public License (GPL)",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Office/Business :: Scheduling",
"Topic :: Software Development :: Libraries "
":: Python Modules"],
keywords='',
author='Cyril Robert',
author_email='[email protected]',
url='http://bitbucket.org/cyrilrbt/caldav',
license='GPL',
packages=find_packages(exclude=['tests']),
include_package_data=True,
zip_safe=False,
install_requires=['vobject', 'lxml', 'nose', 'coverage', 'requests', 'six'],
)