forked from statesofpop/django-cal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 781 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 781 Bytes
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
from setuptools import setup
setup(
name='django-cal',
version='0.3.1',
author='Maik Hoepfel',
author_email='m@maikhoepfel.de',
description=(
'Django app to enable exporting of events to iCalendar files.'
),
packages=['django_cal', ],
keywords='Django iCalendar iCal ics vobject',
url='http://github.com/statesofpop/django-cal',
license='BSD',
install_requires=[
'python-dateutil',
'vobject',
'Django',
],
classifiers=[
"Development Status :: 5 - Production/Stable",
'License :: OSI Approved :: BSD License',
'Framework :: Django',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
)