-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v0.6.0 - Spring 2020 cleanup, added back more methods
- Loading branch information
1 parent
3d7c8af
commit 07e3ea4
Showing
6 changed files
with
226 additions
and
45 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,3 +1,2 @@ | ||
.DS_Store | ||
*.pyc | ||
*.sqlite |
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# -*- coding: utf-8 -*- | ||
|
||
__title__ = 'ares' | ||
__version__ = '0.5' | ||
__version__ = '0.6.0' | ||
__author__ = 'Martin Simon <[email protected]>' | ||
__repo__ = 'https://github.com/barnumbirr/ares' | ||
__license__ = 'Apache v2.0 License' | ||
|
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 |
---|---|---|
@@ -1 +1 @@ | ||
requests==2.20.0 | ||
requests==2.23.0 |
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 |
---|---|---|
|
@@ -19,7 +19,7 @@ | |
setup( | ||
name='ares', | ||
packages = ['ares'], | ||
version = '0.5', | ||
version = '0.6.0', | ||
description = 'Python wrapper around https://cve.circl.lu.', | ||
author = 'Martin Simon', | ||
author_email = '[email protected]', | ||
|
@@ -29,17 +29,14 @@ | |
'Buy me a coffee': 'https://github.com/barnumbirr/ares#buy-me-a-coffee', | ||
}, | ||
license = 'Apache v2.0 License', | ||
install_requires=[ | ||
'requests>=2.18.4' | ||
], | ||
keywords=['CVE', 'cybersecurity', 'vulnerability', 'circl.lu'], | ||
classifiers=[ | ||
'License :: OSI Approved :: Apache Software License', | ||
'Development Status :: 5 - Production/Stable', | ||
'Intended Audience :: Developers', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
'Topic :: Software Development :: Libraries :: Python Modules', | ||
], | ||
long_description = long_description, | ||
|