-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
49 lines (46 loc) · 1.44 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
import os
from setuptools import setup, find_packages
def read_file(filename):
filepath = os.path.join(os.path.dirname(__file__), filename)
return open(filepath, 'r').read()
setup(
name='junebug',
version='0.2.0',
url='https://github.com/praekelt/junebug',
license='BSD',
description=(
'A system for managing text messaging transports via a RESTful HTTP '
'interface'),
long_description=read_file('README.rst'),
author='Praekelt Foundation',
author_email='[email protected]',
packages=find_packages(),
include_package_data=True,
install_requires=[
# We install pyasn1 first, because setuptools gets confused if it
# installs pyasn1-modules first.
'pyasn1',
'klein<=17.10.0',
'jsonschema',
'treq<20.4.1', # https://github.com/twisted/treq/issues/303
'Twisted>=20.3.0,<21.0.0',
'vumi>=0.6.19',
'confmodel',
'PyYAML',
'raven>=6.0.0,<7.0.0',
],
entry_points='''
[console_scripts]
jb = junebug.command_line:main
''',
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 :: Internet :: WWW/HTTP',
],
zip_safe=False
)