Files
i2p.itoopie/apps/sam/python/setup.py

23 lines
551 B
Python
Raw Normal View History

2004-08-02 14:07:30 +00:00
#! /usr/bin/env python
from distutils.core import setup
import os, sys
2004-07-21 11:36:23 +00:00
os.chdir('./src')
if sys.platform == 'win32':
stasherFrontEnd = "..\\stasher.py"
else:
stasherFrontEnd = "../stasher"
setup(name="Python I2P API",
2004-08-02 14:07:30 +00:00
version="0.91",
description="Python Interface to I2P",
author="Connelly Barnes + Aum",
author_email="'Y29ubmVsbHliYXJuZXNAeWFob28uY29t\n'.decode('base64')",
url="http://www.i2p.net/",
2004-08-02 14:07:30 +00:00
packages=['i2p', 'i2p.pylib'],
py_modules=['bencode'],
scripts=[stasherFrontEnd],
)