-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (31 loc) · 1.19 KB
/
setup.py
File metadata and controls
41 lines (31 loc) · 1.19 KB
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
from setuptools import setup
long_description = (
'The Victoria State Emergency Service uses an online tool called Viper '
'to send Emergency Alerting System (EAS) pages. This online form based '
'system is difficult to extend and use in other tools.\n\n'
'This module hides the nasty work of interacting with Viper presenting '
'a simple interface for scripts to use.'
)
setup(
name='vicses.viper',
version='1.1.0',
description='Send VICSES EAS pages via Viper',
long_description=long_description,
url='https://github.com/VICSES/Python-Viper',
author='David Tulloh',
author_email='vicsesdev-david@tulloh.id.au',
license='AGPL-3+',
keywords='Viper VICSES EAS paging',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Natural Language :: English',
'Topic :: Communications',
'Programming Language :: Python :: 3',
],
packages=["vicses.viper"],
install_requires=['requests'],
tests_require=['requests_mock', 'pytest']
)