File: setup.py

package info (click to toggle)
python-caldav 0.5.0-0.1
  • links: PTS
  • area: main
  • in suites: buster
  • size: 296 kB
  • sloc: python: 1,786; makefile: 5
file content (32 lines) | stat: -rwxr-xr-x 1,220 bytes parent folder | download
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
#!/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='cyril@hippie.io',
        url='http://bitbucket.org/cyrilrbt/caldav',
        license='GPL',
        packages=find_packages(exclude="tests"),
        include_package_data=True,
        zip_safe=False,
        install_requires=['vobject', 'lxml', 'requests', 'six'],
        tests_require=['nose', 'coverage']
    )