forked from python-caldav/caldav
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·39 lines (36 loc) · 1.48 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
#!/usr/bin/python2
# -*- encoding: utf-8 -*-
from setuptools import setup, find_packages
version = '0.5.1'
with open("README.md", "r") as fh:
long_description = fh.read()
if __name__ == '__main__':
setup(
name='aiocaldav',
version=version,
description="asynchronous CalDAV (RFC4791) client library",
long_description=long_description,
long_description_content_type="text/markdown",
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",
"Programming Language :: Python :: 3.6",
"Topic :: Office/Business :: Scheduling",
"Topic :: Software Development :: Libraries "
":: Python Modules"],
keywords='',
author='Cyril Robert',
author_email='[email protected]',
maintainer='Thomas Chiroux',
maintainer_email='[email protected]',
url='https://github.com/ThomasChiroux/aiocaldav',
license='GPL',
packages=find_packages(exclude=['tests']),
include_package_data=True,
zip_safe=False,
install_requires=['vobject', 'lxml', 'aiohttp', 'pytz'],
)