forked from rapidsms/rapidsms
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·54 lines (44 loc) · 1.47 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/usr/bin/env python
# vim: ai ts=4 sts=4 et sw=4
import os
from setuptools import setup, find_packages
def read_file(filename):
"""Read a file into a string"""
path = os.path.abspath(os.path.dirname(__file__))
filepath = os.path.join(path, filename)
try:
return open(filepath).read()
except IOError:
return ''
setup(
name="RapidSMS",
version=__import__('rapidsms').__version__,
license="BSD",
install_requires=[
"requests==1.2.0",
"django-tables2==0.14.0",
"djappsettings==0.1.0",
"django-selectable==0.7.0",
],
packages=find_packages(exclude=['*.pyc']),
include_package_data=True,
author="RapidSMS development community",
author_email="[email protected]",
maintainer="RapidSMS development community",
maintainer_email="[email protected]",
description="Build SMS applications with Python and Django",
long_description=read_file('README.rst'),
url="http://github.com/rapidsms/rapidsms",
test_suite="run_tests.main",
classifiers=[
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Framework :: Django',
'Development Status :: 4 - Beta',
'Operating System :: OS Independent',
],
)