forked from fanstatic/js.fullcalendar
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
46 lines (40 loc) · 1.07 KB
/
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
37
38
39
40
41
42
43
44
45
46
# -*- coding: utf-8 -*-
from setuptools import find_packages
from setuptools import setup
import os
version = u'2.3.2-dev'
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
long_description = (
read(u'README.txt')
+ u'\n' +
read(u'js', u'fullcalendar', u'test_fullcalendar.txt')
+ u'\n' +
read(u'CHANGES.txt'))
setup(
name=u'js.fullcalendar',
version=version,
description="Fanstatic packaging of FullCalendar",
long_description=long_description,
classifiers=[],
keywords=u'',
author=u'Andreas Kaiser',
author_email=u'[email protected]',
url=u'https://github.com/Kotti/js.fullcalendar',
license=u'BSD',
packages=find_packages(),
namespace_packages=[u'js'],
include_package_data=True,
zip_safe=False,
install_requires=[
u'fanstatic',
u'js.jquery',
u'js.momentjs',
u'setuptools',
],
entry_points={
u'fanstatic.libraries': [
u'fullcalendar = js.fullcalendar:library',
],
},
)