Skip to content

Commit 994de3b

Browse files
committed
pypy
1 parent ee0d7fa commit 994de3b

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ python:
33
- "2.7"
44
- "3.4"
55
- "3.5"
6+
# PyPy versions
7+
- "pypy"
8+
- "pypy3"
69
install:
710
- "pip install -r requirements.txt"
811
- "pip install ."

setup.py

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,16 @@
2323
license='MIT License, see LICENSE file',
2424

2525
packages=['telegraph'],
26-
install_requires=['requests']
26+
install_requires=['requests'],
27+
28+
classifiers=[
29+
'License :: OSI Approved :: MIT License',
30+
'Operating System :: OS Independent',
31+
'Programming Language :: Python',
32+
'Programming Language :: Python :: 2.7',
33+
'Programming Language :: Python :: 3.4',
34+
'Programming Language :: Python :: 3.5',
35+
'Programming Language :: Python :: Implementation :: PyPy',
36+
'Programming Language :: Python :: Implementation :: CPython',
37+
]
2738
)

0 commit comments

Comments
 (0)