-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from FlowCrypt/pypi-readiness
Prepare package for prerelease on PyPI
- Loading branch information
Showing
6 changed files
with
27 additions
and
0 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,3 @@ | ||
from homograph.homograph import homographic | ||
from homograph.homograph import homographs | ||
from homograph.homograph import homoglyphs |
File renamed without changes.
File renamed without changes.
Empty file.
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,2 @@ | ||
[metadata] | ||
description-file = README.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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
from distutils.core import setup | ||
setup( | ||
name = 'homograph', | ||
packages = ['homograph'], | ||
version = '0.01', | ||
license='MIT', | ||
description = 'IDN Homograph detection tools', | ||
author = 'Alex Alvarado', | ||
author_email = '[email protected]', | ||
url = 'https://github.com/flowcrypt/idn-homograph-database', | ||
# Note: The below release doesn't exist yet! | ||
download_url = 'https://github.com/FlowCrypt/idn-homographs-database/archive/0.01.tar.gz', | ||
keywords = ['IDN', 'homograph', 'attack', 'security'], | ||
install_requires=[], | ||
classifiers=[ | ||
'Development Status :: 1 - Planning', | ||
'Intended Audience :: Developers', | ||
'Topic :: Security', | ||
'License :: OSI Approved :: MIT License', | ||
'Programming Language :: Python :: 3', | ||
], | ||
) |