-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (27 loc) · 958 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
27
28
from setuptools import setup, find_packages
setup(
name="vxsandbox",
version="0.6.2-alpha3",
url='http://github.com/praekelt/vumi-sandbox',
license='BSD',
description="A sandbox application worker for Vumi.",
long_description=open('README.rst', 'r').read(),
author='Praekelt Foundation',
author_email='[email protected]',
packages=find_packages(),
include_package_data=True,
install_requires=[
'automat<22.10.0', # Twisted dep, newer versions don't work with ancient Python.
'Twisted>=20.3.0,<21.0.0',
'vumi>=0.6.19',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Networking',
],
)