diff options
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..efceb4c --- /dev/null +++ b/setup.py @@ -0,0 +1,34 @@ +# -*- coding: utf-8 -*- +# setup.py +# Copyleft (C) 2013 LEAP +""" +setup file for leap.mx +""" +from setuptools import setup, find_packages + +requirements = [ + "twisted", + #... +] + +# XXX add classifiers, docs + +setup( + name='leap.mx', + version='0.0.1', + url='https://leap.se/', + license='', + author="Isis Agora Lovecruft", + author_email="<isis@leap.se> 0x2cdb8b35", + description=("An asynchronous, transparently-encrypting remailer " + "for the LEAP platform"), + long_description=( + "An asynchronous, transparently-encrypting remailer " + "using BigCouch/CouchDB and PGP/GnuPG, written in Twisted Python." + ), + namespace_packages=["leap"], + package_dir={'': 'src'}, + packages=find_packages('src'), + #test_suite='leap.mx.tests', + install_requires=requirements, +) |