forked from sudheesh001/loklak_api_python
-
Notifications
You must be signed in to change notification settings - Fork 26
/
setup.py
39 lines (38 loc) · 1.29 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
33
34
35
36
37
38
39
"""The module that setup loklak python API."""
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
description = "Python API for loklak, Anonymous distributed P2P Systems."
try:
long_description = open("README.rst").read()
except IOError:
long_description = description
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(name='python-loklak-api',
version='1.7',
description=description,
long_description=long_description,
author='Sudheesh Singanamalla',
author_email='sudheesh95@gmail.com',
url='https://github.com/loklak/loklak_python_api',
license='',
include_package_data=True,
platforms='Linux/Mac',
py_modules=['loklak'],
python_requires='>=2.7.0',
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=requirements,
zip_safe=False,
download_url='https://github.com/loklak/loklak_python_api/archive/v1.7.tar.gz',
scripts=['bin/loklak']
)