-
Notifications
You must be signed in to change notification settings - Fork 33
/
setup.py
32 lines (31 loc) · 1.02 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
"""The module that setup loklak python API."""
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name='python-loklak-api',
version='1.7',
description="Python API for loklak, Anonymous distributed P2P Systems.",
author='Sudheesh Singanamalla',
author_email='[email protected]',
url='https://github.com/loklak/loklak_api_python',
license='',
platforms='Linux/Mac',
py_modules=['loklak'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Internet',
],
keywords="Twitter Loklak Anonymous API",
install_requires=[
"requests==2.8.1",
"xmljson==0.1.6"
],
zip_safe=False,
download_url='https://github.com/loklak/loklak_api_python',
scripts=['bin/loklak']
)