forked from justinabrahms/django-gencal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (24 loc) · 761 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
f = open('README.md')
readme = f.read()
f.close()
setup(
name='django-gencal',
version='0.2',
description='django-gencal is a resuable Django application for rendering calendars.',
long_description=readme,
author='Justin Lilly',
author_email='[email protected]',
url='http://code.justinlilly.com/django-gencal/',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
packages=['gencal'],
zip_safe=False,
)