forked from gautamkrishnar/socli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (30 loc) · 1.08 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
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from codecs import open
from sys import exit,version
import sys
if version < '1.0.0':
print("Python 1 is not supported...")
sys.exit(1)
with open('README.rst') as f:
longd = f.read()
setup(
name='socli',
include_package_data=True,
packages=["socli"],
data_files=[('socli', ['socli/user_agents.txt'])],
entry_points = {"console_scripts": ['socli = socli.socli:main']},
install_requires=['BeautifulSoup4','requests','colorama','Py-stackExchange', 'urwid'],
requires=['BeautifulSoup4','requests','colorama','PyStackExchange', 'urwid'],
version='3.6',
url='http://www.github.com/gautamkrishnar/socli',
keywords="stack overflow cli",
license='BSD',
author='Gautam krishna R',
author_email='r.gautamkrishna@gmail.com',
description='Stack overflow commnand line interface. SoCLI allows you to search and browse stack overflow from the terminal.',
long_description="\n\n"+longd
)