-
Notifications
You must be signed in to change notification settings - Fork 17
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 #1 from capless/new_package_name
Changed the package name, removed python 2.6
- Loading branch information
Showing
3 changed files
with
15 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 |
---|---|---|
@@ -1,7 +1,6 @@ | ||
sudo: false | ||
language: python | ||
python: | ||
- "2.6" | ||
- "2.7" | ||
- "3.3" | ||
- "3.4" | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,14 +32,14 @@ def get_install_requires(): | |
|
||
|
||
setup( | ||
name='python-jose', | ||
name='python-jose-cryptodome', | ||
version=jose.__version__, | ||
author='Michael Davis', | ||
author_email='[email protected]', | ||
description='JOSE implementation in Python', | ||
description='JOSE implementation in Python using pycryptodome', | ||
license='MIT', | ||
keywords='jose jws jwe jwt json web token security signing', | ||
url='http://github.com/mpdavis/python-jose', | ||
url='http://github.com/capless/python-jose-cryptodome', | ||
packages=get_packages('jose'), | ||
long_description=long_description, | ||
classifiers=[ | ||
|
@@ -48,7 +48,6 @@ def get_install_requires(): | |
'Natural Language :: English', | ||
'License :: OSI Approved :: MIT License', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 2.6', | ||
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 3.3', | ||
'Programming Language :: Python :: 3.4', | ||
|