forked from ixc/glamkit-eventtools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (27 loc) · 1.02 KB
/
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='glamkit-eventtools',
version='1.0.0a1',
description='An event management app for Django.',
author='Greg Turner',
author_email='[email protected]',
url='http://github.com/glamkit/glamkit-eventtools',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
classifiers=['Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities'],
install_requires=['setuptools', 'vobject==0.8.1c', 'python-dateutil==1.5', 'django-mptt'],
license='BSD',
test_suite = "eventtools.tests",
)
# also requires libraries in REQUIREMENTS.txt
# pip install -r REQUIREMENTS.txt