From: Brian Warner Date: Tue, 2 Jan 2007 06:43:24 +0000 (-0700) Subject: add __init__ and setup.py glue for py_ecc, so we can import it X-Git-Tag: tahoe_v0.1.0-0-UNSTABLE~415 X-Git-Url: https://git.rkrishnan.org/?a=commitdiff_plain;h=7a6bdadde522ae1b1818f86c209abaa6419a09f8;p=tahoe-lafs%2Ftahoe-lafs.git add __init__ and setup.py glue for py_ecc, so we can import it --- diff --git a/setup.py b/setup.py index 0eddb778..95db8d2a 100644 --- a/setup.py +++ b/setup.py @@ -187,10 +187,13 @@ setup( "allmydata.scripts", "allmydata.Crypto", "allmydata.Crypto.Hash", "allmydata.Crypto.Cipher", "allmydata.Crypto.Util", - "allmydata.Crypto.Protocol", "allmydata.Crypto.PublicKey" + "allmydata.Crypto.Protocol", "allmydata.Crypto.PublicKey", + "allmydata.py_ecc", ], package_dir={ "allmydata": "src/allmydata", - "allmydata.Crypto": "src/Crypto" }, + "allmydata.Crypto": "src/Crypto", + "allmydata.py_ecc": "src/py_ecc", + }, scripts = ["bin/allmydata"], package_data={ 'allmydata': ['web/*.xhtml'] }, diff --git a/src/py_ecc/__init__.py b/src/py_ecc/__init__.py new file mode 100644 index 00000000..e69de29b