Skip to content

Commit

Permalink
Fixing up setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
dc3-tsd authored and User committed Mar 7, 2018
1 parent 8c06296 commit 41298bf
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 8 deletions.
2 changes: 2 additions & 0 deletions MANIFEST.in
@@ -0,0 +1,2 @@
include *.md LICENSE.txt
recursive-include mwcp/resources *.json *.txt
2 changes: 2 additions & 0 deletions setup.cfg
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
23 changes: 15 additions & 8 deletions setup.py
Expand Up @@ -16,21 +16,28 @@ def read(fname):
name="mwcp",
version="1.0.0",
author="DC3",
email="dcci@dc3.mil",
author_email="dcci@dc3.mil",
description=__doc__,
long_description=read("README.md"),
keywords="malware",
url="http://github.com/Defense-Cyber-Crime-Center/DC3-MWCP/",
packages=find_packages(),
package_dir={"mwcp": "mwcp"},
include_package_data=True,
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: MIT License",'
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3'
],
entry_points={
'console_scripts': [
'mwcp-tool = mwcp.tools.tool:main',
'mwcp-client = mwcp.tools.client:main',
'mwcp-server = mwcp.tools.server:main',
'mwcp-test = mwcp.tools.test:main'
]
'console_scripts': [
'mwcp-tool = mwcp.tools.tool:main',
'mwcp-client = mwcp.tools.client:main',
'mwcp-server = mwcp.tools.server:main',
'mwcp-test = mwcp.tools.test:main'
]
},
install_requires=[
'bottle',
Expand Down

0 comments on commit 41298bf

Please sign in to comment.