forked from dokterbob/django-agenda
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (31 loc) · 912 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
import os
from distutils.core import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
README = read('README.rst')
setup(
name = "django-agenda",
version = "20100618",
url = 'http://github.com/glibersat/django-agenda',
license = 'GPL v3',
description = "A generic implementation of a web-based calendar with events.",
long_description = README,
author = 'Mathijs de Bruin',
author_email = '[email protected]',
packages = [
'agenda',
],
package_data = {
},
requires = [
],
classifiers = [
'Development Status :: 4 - Beta',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: GPL License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
]
)