forked from fortra/impacket
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changing from dev version to release version for tagging.
- Loading branch information
Showing
3 changed files
with
8 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
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 |
---|---|---|
|
@@ -15,16 +15,19 @@ | |
else: | ||
data_files = [] | ||
|
||
def read(fname): | ||
return open(os.path.join(os.path.dirname(__file__), fname)).read() | ||
|
||
setup(name = PACKAGE_NAME, | ||
version = "0.9.17-dev", | ||
version = "0.9.17", | ||
description = "Network protocols Constructors and Dissectors", | ||
url = "https://www.coresecurity.com/corelabs-research/open-source-tools/impacket", | ||
author = "Core Security Technologies", | ||
author_email = "[email protected]", | ||
maintainer = "Alberto Solino", | ||
maintainer_email = "[email protected]", | ||
license = "Apache modified", | ||
long_description = 'Impacket is a collection of Python classes focused on providing access to network packets. Impacket allows Python developers to craft and decode network packets in simple and consistent manner.', | ||
long_description = read('README'), | ||
platforms = ["Unix","Windows"], | ||
packages=['impacket', 'impacket.dcerpc', 'impacket.examples', 'impacket.dcerpc.v5', 'impacket.dcerpc.v5.dcom', | ||
'impacket.krb5', 'impacket.ldap', 'impacket.examples.ntlmrelayx', | ||
|