-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Changes for PyPI support. * Updated Dependancies. * Added requirements.txt * Updated README.md * Update README.md
- Loading branch information
Dextroz
authored
Feb 13, 2019
1 parent
dd55eba
commit 8289ff3
Showing
6 changed files
with
166 additions
and
5 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
appdirs==1.4.3 | ||
attrs==18.2.0 | ||
black==18.9b0 | ||
bleach==3.1.0 | ||
certifi==2018.11.29 | ||
chardet==3.0.4 | ||
Click==7.0 | ||
docutils==0.14 | ||
idna==2.8 | ||
pkginfo==1.5.0.1 | ||
Pygments==2.3.1 | ||
readme-renderer==24.0 | ||
requests==2.21.0 | ||
requests-toolbelt==0.9.1 | ||
six==1.12.0 | ||
toml==0.10.0 | ||
tqdm==4.31.1 | ||
twine==1.12.1 | ||
urllib3==1.24.1 | ||
webencodings==0.5.1 |
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
from setuptools import setup, find_packages | ||
|
||
with open("README.md", "r") as readme: | ||
long_description = readme.read() | ||
|
||
setup( | ||
name="virustotal-python", | ||
version="0.0.1", | ||
author="Dextroz", | ||
author_email="[email protected]", | ||
description="A light wrapper around the public VirusTotal API.", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/Dextroz/virustotal-python", | ||
packages=find_packages(), | ||
classifiers=[ | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.7" | ||
], | ||
) |
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,2 @@ | ||
from virustotal_python.virustotal import Virustotal | ||
name = "virustotal-python" |