diff options
author | themusicgod1 <jeffrey.cliff@gmail.com> | 2017-05-03 11:42:30 -0400 |
---|---|---|
committer | themusicgod1 <jeffrey.cliff@gmail.com> | 2017-05-03 11:42:30 -0400 |
commit | 7119a74bf42b5f92a36882c7ba04c3a17473861e (patch) | |
tree | 1c5c9c0699bc0d6fef8c276c28e1c7ebae661fd6 /globalist/setup.py | |
parent | 8f99d00b1cb57a046b1564209137575a123e1195 (diff) | |
download | cloudflare-tor-7119a74bf42b5f92a36882c7ba04c3a17473861e.tar.lz cloudflare-tor-7119a74bf42b5f92a36882c7ba04c3a17473861e.tar.xz cloudflare-tor-7119a74bf42b5f92a36882c7ba04c3a17473861e.zip |
globalist files
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..5a3b2b74 --- /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.1', + 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' +) + |