|
2 | 2 | import os |
3 | 3 | from setuptools import setup |
4 | 4 |
|
| 5 | + |
5 | 6 | def read(fname): |
6 | 7 | return open(os.path.join(os.path.dirname(__file__), fname)).read() |
7 | 8 |
|
8 | 9 | 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", |
17 | 18 | packages=['jwt'], |
18 | 19 | scripts=['bin/jwt'], |
19 | 20 | long_description=read('README.md'), |
20 | 21 | classifiers=[ |
21 | 22 | "Development Status :: 3 - Alpha", |
22 | | - "Topic :: Utilities", |
23 | 23 | "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", |
24 | 30 | ], |
25 | | - test_suite='tests.test_jwt' |
26 | | -) |
| 31 | + test_suite='tests.test_jwt') |
0 commit comments