-
Notifications
You must be signed in to change notification settings - Fork 42
/
setup.py
36 lines (32 loc) · 892 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
35
36
import os
from setuptools import setup, find_packages
import calendarium
try:
import multiprocessing # NOQA
except ImportError:
pass
def read(fname):
try:
return open(os.path.join(os.path.dirname(__file__), fname)).read()
except IOError:
return ''
setup(
name="django-calendarium",
version=calendarium.__version__,
description=read('DESCRIPTION'),
long_description=read('README.rst'),
license='The MIT License',
platforms=['OS Independent'],
keywords='django, calendar, app, widget, events, schedule',
author='Daniel Kaufhold',
author_email='daniel.kaufhold@bitmazk.com',
url="https://github.com/bitmazk/django-calendarium",
packages=find_packages(),
include_package_data=True,
install_requires=[
'django>=1.6',
'python-dateutil',
'django-filer',
'django-libs',
],
)