diff options
author | Kali Kaneko <kali@leap.se> | 2013-03-15 03:30:00 +0900 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2013-03-15 03:30:00 +0900 |
commit | 4cdc70715469258a4da9e30bee017b5a881b9ca5 (patch) | |
tree | ed6331980d8abe53bdf040a9865a2e66071e21f9 /setup.py | |
parent | 16d8c7ea31105846bfb118dcff9a9bf29b676422 (diff) |
simple setup.py
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, +) |