-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·30 lines (27 loc) · 999 Bytes
/
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
# -*- encoding: utf-8 -*-
from setuptools import setup, find_packages
import sys
import os
version = '0.1'
if __name__ == '__main__':
setup(
name='taskdav',
version=version,
description="Task management for CalDAV task list",
classifiers=["Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Office/Business :: Scheduling",
],
keywords='',
author='David Fraser',
author_email='[email protected]',
url='http://github.org/davidfraser/taskdav',
license='GPL',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=['caldav', 'aaargh', 'colorama', 'flufl.enum'],
)