summaryrefslogtreecommitdiffstats
path: root/globalist/setup.py
blob: 5a3b2b746025bf2021888a939eb5194aee3e460b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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'
)