Skip to content

Commit

Permalink
make the package installable from pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
philip committed Jul 27, 2014
1 parent cc16abc commit 5c2136d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include *.md
2 changes: 1 addition & 1 deletion __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -37,6 +36,7 @@ def run_tests(self):
tests_require = ['pytest'],
cmdclass = {'test': PyTest},
py_modules = ["virustotal2"],
include_package_data=True,
requires = [
'requests',
],
Expand All @@ -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]",
)

0 comments on commit 5c2136d

Please sign in to comment.