-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathsetup.py
26 lines (24 loc) · 911 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
from setuptools import setup, find_packages
try:
README = open('README.rst').read()
except:
README = None
setup(
name = 'django-agenda',
version = "0.1",
description = 'An event agenda application for Django 1.0+.',
long_description = README,
author = 'Mathijs de Bruin',
author_email = '[email protected]',
url = 'http://github.com/dokterbob/django-agenda',
packages = find_packages(),
include_package_data = True,
classifiers = ['Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities'],
)