forked from eos87/citas
-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
34 lines (30 loc) · 864 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools.core import setup
except ImportError:
from distutils.core import setup
import os
install_requires = [
'Django>=1.3',
]
setup(
name = "django-agenda",
version = "0.1",
url = "http://github.com/fitoria/django-agenda",
licence = 'MIT',
description = 'Simple, pluggable and flexible agenda application for Django.',
author = 'Adolfo Fitoria',
author_email = '[email protected]',
install_requires = install_requires,
packages = [],
include_package_data = True,
classifiers = [
'Development Status :: 3 - Alpha',
'Framework :: Django',
'Intended Audience :: Developers',
'Licence :: OSI Approved :: MIT Licence',
'Programming Languaje :: Python',
'Topic :: Internet :: WWW/HTTP',
]
)