Skip to content

Commit f902a82

Browse files
committed
Merge pull request jpadilla#22 from patrys/python-3
Announce Python 3 support
2 parents b6ad410 + 3bb76c1 commit f902a82

File tree

2 files changed

+16
-11
lines changed

2 files changed

+16
-11
lines changed

setup.py

Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,30 @@
22
import os
33
from setuptools import setup
44

5+
56
def read(fname):
67
return open(os.path.join(os.path.dirname(__file__), fname)).read()
78

89
setup(
9-
name = "PyJWT",
10-
version = "0.1.6",
11-
author = "Jeff Lindsay",
12-
author_email = "jeff.lindsay@twilio.com",
13-
description = ("JSON Web Token implementation in Python"),
14-
license = "MIT",
15-
keywords = "jwt json web token security signing",
16-
url = "http://github.com/progrium/pyjwt",
10+
name="PyJWT",
11+
version="0.1.6",
12+
author="Jeff Lindsay",
13+
author_email="jeff.lindsay@twilio.com",
14+
description="JSON Web Token implementation in Python",
15+
license="MIT",
16+
keywords="jwt json web token security signing",
17+
url="http://github.com/progrium/pyjwt",
1718
packages=['jwt'],
1819
scripts=['bin/jwt'],
1920
long_description=read('README.md'),
2021
classifiers=[
2122
"Development Status :: 3 - Alpha",
22-
"Topic :: Utilities",
2323
"License :: OSI Approved :: MIT License",
24+
"Programming Language :: Python",
25+
"Programming Language :: Python :: 2.6",
26+
"Programming Language :: Python :: 2.7",
27+
"Programming Language :: Python :: 3.2",
28+
"Programming Language :: Python :: 3.3",
29+
"Topic :: Utilities",
2430
],
25-
test_suite='tests.test_jwt'
26-
)
31+
test_suite='tests.test_jwt')

tests/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)