-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·44 lines (42 loc) · 1.25 KB
/
setup.py
File metadata and controls
executable file
·44 lines (42 loc) · 1.25 KB
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
#! /usr/bin/env python
import os
from setuptools import setup
import woodstock
setup(
name='woodstock',
version = woodstock.__version__,
description = 'django based event toolkit',
long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),
author = 'Marc Egli',
author_email = 'egli@allink.ch',
url = 'http://github.com/allink/woodstock/',
license='BSD License',
platforms=['OS Independent'],
packages=[
'woodstock',
'woodstock.content',
'woodstock.content.event',
'woodstock.feincms_extensions',
'woodstock.models',
'woodstock.templatetags',
'woodstock.urls',
'woodstock.views',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
requires=[
'FeinCMS(>=1.3.0)',
'Django(>=1.3)',
'pennyblack(>=0.2.1)',
'icalendar(>=2.1)',
],
include_package_data=True,
)