-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (33 loc) · 987 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
30
31
32
33
34
from setuptools import find_packages, setup
from djangocms_ical import __version__
setup (
name='djangocms-ical',
version=__version__,
packages=find_packages(),
provides = ['djangocms_ical'],
include_package_data = True,
license = 'BSD',
description='Display events from an iCalendar feed',
author='John Bazik',
author_email='[email protected]',
url='http://github.com/jbazik/djangocms-ical',
install_requires = [
'Django>=1.7',
'django-cms>=3.0',
'icalendar',
],
test_suite = 'djangocms_ical.tests.test_models',
tests_require = [
'mock',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities',
'License :: OSI Approved :: BSD License',
],
)