-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make the package installable from pypi
- Loading branch information
philip
committed
Jul 27, 2014
1 parent
cc16abc
commit 5c2136d
Showing
3 changed files
with
7 additions
and
6 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
include *.md |
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 @@ | |
__copyright__ = "Copyright 2014, Philip Martin" | ||
__credits__ = ["Philip Martin"] | ||
__license__ = "MIT" | ||
__version__ = "1.0" | ||
__version__ = "1.1" | ||
__maintainer__ = "Philip Martin" | ||
__email__ = "[email protected]" | ||
__status__ = "Production" |
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 |
---|---|---|
|
@@ -9,7 +9,6 @@ | |
from distutils.core import setup | ||
import sys | ||
from setuptools.command.test import test as TestCommand | ||
import __init__ as virustotal2 | ||
|
||
try: | ||
from pypandoc import convert | ||
|
@@ -37,6 +36,7 @@ def run_tests(self): | |
tests_require = ['pytest'], | ||
cmdclass = {'test': PyTest}, | ||
py_modules = ["virustotal2"], | ||
include_package_data=True, | ||
requires = [ | ||
'requests', | ||
], | ||
|
@@ -51,8 +51,8 @@ def run_tests(self): | |
"Topic :: Security", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
], | ||
license = virustotal2.__license__, | ||
version = virustotal2.__version__, | ||
author = virustotal2.__author__, | ||
author_email = virustotal2.__email__, | ||
license = "MIT", | ||
version = "1.1", | ||
author = "Philip Martin", | ||
author_email = "[email protected]", | ||
) |