-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
59 lines (48 loc) · 1.82 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
59
#!/usr/bin/env python
# -*- coding: ascii -*-
"""
A really simple client for Active 911 Alerts
This software is licensed as described in the README.md and LICENSE
file, which you should have received as part of this distribution.
Changelog:
- 2018-12-12 - Initial Commit
- 2019-02-27 - Fixed several typos
- 2019-02-27 - Changes requires to install_requires
"""
from setuptools import setup, find_packages
from a911client import __version__
VERSION = __version__
DESCRIPTION = 'A tiny Python client for Active911 alert messages.'
# with codecs.open('README.md', 'r', encoding='UTF-8') as readme:
# LONG_DESCRIPTION = ''.join(readme)
CLASSIFIERS = [ 'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules'
]
REQUIREMENTS = [
'requests',
'slixmpp',
'urllib3',
]
SETUP_REQUIREMENTS = ['requests']
# packages = [ 'A911Client' ]
setup(
name = "a911client",
version = VERSION,
description = DESCRIPTION,
long_description = open('README.md').read(),
long_description_content_type = 'text/markdown',
author = 'Joe Porcelli',
author_email = 'joe@kt3i.com',
url = 'http://github.com/porcej/a911client',
license = 'MIT',
platforms = [ 'any' ],
packages = find_packages(),
install_requires = REQUIREMENTS,
setup_requires = SETUP_REQUIREMENTS,
classifiers = CLASSIFIERS,
python_requires='>=3.6',
)