forked from arcturial/clickatell-python
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from clickatell/python3_conversion
Added compatibility for Python 3.6
- Loading branch information
Showing
8 changed files
with
26 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,5 @@ __pycache__ | |
/stage.py | ||
*.egg | ||
*.egg-info | ||
/dist/ | ||
/dist/*.tar.gz | ||
/build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
language: python | ||
python: | ||
- "2.7" | ||
- "3.2" | ||
- "3.6" | ||
install: "python setup.py install" | ||
script: python -m unittest discover -s test/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,27 @@ | ||
from setuptools import setup, find_packages | ||
import setuptools | ||
|
||
setup( | ||
with open("README.md", "r") as fh: | ||
long_description = fh.read() | ||
|
||
setuptools.setup( | ||
name="clickatell-platform", | ||
version="2.0.0", | ||
author="Chris Brand, Stephen Leibbrandt", | ||
version="2.0.1", | ||
author="Chris Brand, Stephen Leibbrandt, Renier Minne", | ||
author_email="support@clickatell.com", | ||
keywords=["clickatell","sms"], | ||
packages=find_packages(), | ||
keywords=["clickatell","sms","platform"], | ||
packages=setuptools.find_packages(), | ||
include_package_data=True, | ||
url="https://github.com/clickatell/clickatell-python", | ||
license="LICENSE", | ||
description="Library for interacting with the Clickatell Platform SMS Gateway", | ||
long_description=open("README.md").read(), | ||
long_description_content_type="text/markdown", | ||
license="LICENSE", | ||
install_requires=[ | ||
"httplib2", | ||
] | ||
) | ||
], | ||
classifiers=[ | ||
"Programming Language :: Python", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
], | ||
) |