diff options
author | anonymous <anonymous@gmail.com> | 2018-04-16 10:22:57 -0400 |
---|---|---|
committer | anonymous <anonymous@gmail.com> | 2018-04-16 10:22:57 -0400 |
commit | 69ecdeaecd907542ef744386a69c013bc556b3ff (patch) | |
tree | 5b6efe19107682587f46e50253ccff0343e2b482 /globalist/setup.py | |
parent | 5511c59852e4c82d78d56175bd9dadb21ed3f901 (diff) | |
download | cloudflare-tor-69ecdeaecd907542ef744386a69c013bc556b3ff.tar.lz cloudflare-tor-69ecdeaecd907542ef744386a69c013bc556b3ff.tar.xz cloudflare-tor-69ecdeaecd907542ef744386a69c013bc556b3ff.zip |
apparently we need code here, addresses #2
Diffstat (limited to 'globalist/setup.py')
-rwxr-xr-x | globalist/setup.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/globalist/setup.py b/globalist/setup.py new file mode 100755 index 00000000..24542977 --- /dev/null +++ b/globalist/setup.py @@ -0,0 +1,17 @@ +#!/usr/bin/env python3 + +from distutils.core import setup + +setup( + name='Globalist', + version='0.0.6.2', + description='Globalist distributed git onions', + author='fnordomat', +# author_email='', + url='https://github.com/fnordomat/Globalist', + packages=['globalist'], + scripts=['Globalist.py'], + install_requires=['stem>=1.5.0'], + license='GPLv3' +) + |