forked from andymckay/django-rapidsms-malnutrition
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
24 lines (23 loc) · 848 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
from setuptools import setup, find_packages
setup(
name='django-rapidsms-baseui',
version=__import__('malnutrition').__version__,
description='Base models for rapidsms that can be re-used, not a django app.',
long_description=open('README.rst').read(),
author='Andy McKay',
author_email='[email protected]',
license='BSD',
packages=find_packages(exclude=['ez_setup']),
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 :: Software Development :: Libraries :: Python Modules',
],
)