forked from rapidsms/rapidsms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·58 lines (49 loc) · 1.67 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
55
56
57
58
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)
with open(filepath) as f:
return f.read()
setup(
name="RapidSMS",
version=__import__('rapidsms').__version__,
license="BSD",
install_requires=[
"requests>=1.2.0",
"django-tables2==1.21.*",
"djappsettings>=0.4.0",
"django-selectable>=0.7.0",
"six",
],
packages=find_packages(),
include_package_data=True,
exclude_package_data={
'': ['*.pyc']
},
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',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Framework :: Django',
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.2',
'Development Status :: 5 - Production/Stable',
'Operating System :: OS Independent',
],
)