Skip to content

Commit

Permalink
Merge pull request #3 from FlowCrypt/pypi-readiness
Browse files Browse the repository at this point in the history
Prepare package for prerelease on PyPI
  • Loading branch information
Tom J authored Jun 22, 2020
2 parents 4b16251 + ae7ff0b commit b92f961
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 0 deletions.
3 changes: 3 additions & 0 deletions homograph/__init__.py
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 removed requirements.txt
Empty file.
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
22 changes: 22 additions & 0 deletions setup.py
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',
],
)

0 comments on commit b92f961

Please sign in to comment.