fix examples, update account API `user` method
[smsapi-python.git] / setup.py
blobf569810549543d78a75e96098260ab232e81cc0a
1 #!/usr/bin/env python
3 from smsapi import version, name
5 from setuptools import setup, find_packages
7 with open('README.md') as f:
8 long_description = f.read()
10 setup(
11 name=name,
12 version=version,
13 description='SmsAPI client',
14 author='SMSAPI',
15 author_email='bok@smsapi.pl',
16 url='https://github.com/smsapi/smsapi-python-client',
17 packages=find_packages(exclude=["tests.*", "tests"]),
18 include_package_data=True,
19 install_requires=[
20 'requests',
22 classifiers=(
23 'Development Status :: 5 - Production/Stable',
24 'Intended Audience :: Developers',
25 'License :: OSI Approved :: Apache Software License',
26 'Topic :: Software Development :: Libraries :: Python Modules',
27 'Programming Language :: Python :: 2.7',
28 'Programming Language :: Python :: 3.4',
29 'Programming Language :: Python :: 3.5',
30 'Programming Language :: Python :: 3.6',
31 'Programming Language :: Python :: 3.7',
33 test_suite='tests.suite',
34 long_description=long_description,
35 long_description_content_type='text/markdown'