-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
71 lines (63 loc) · 1.73 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
from setuptools import setup, find_packages
from os import path
from codecs import open
import pip
current_path = path.abspath(path.dirname(__file__))
#install numpy and scipy if not exists seperately since compiled header are required
try:
import numpy
except ImportError:
pip.main(['install','numpy'])
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except(IOError, ImportError):
long_description = open('README.md').read()
setup(
name='IRCLogParser',
version='1.0.0',
description='A Parser for IRC chat Logs',
long_description=long_description,
url='https://github.com/prasadtalasila/IRCLogParser',
author='Prasad Talasila',
author_email='[email protected]',
download_url='https://github.com/prasadtalasila/IRCLogParser/archive/v1.0.0.tar.gz',
license='MIT',
include_package_data=True,
keywords='IRC parser data-analysis research development',
packages=find_packages(exclude=['docs', 'tests']),
setup_requires=[
'graphviz'
],
install_requires=[
'BeautifulSoup',
'networkx==1.11',
'matplotlib',
'pygraphviz',
'scikit-learn',
'pandas',
'python-igraph',
'nltk',
'plotly==2.4.1',
'ddt',
'mock'
],
extra_requires={
'dev': [
'sphinx',
'pyyaml',
'sphinx_rtd_theme>=0.2.4',
't3fieldlisttable',
't3tablerows',
't3targets',
'sphinxcontrib-googlechart',
'sphinxcontrib-googlemaps',
'sphinxcontrib-httpdomain',
'sphinxcontrib-slide',
'sphinxcontrib.youtube',
'codeclimate-test-reporter',
'memory_profiler',
'snakefood'
]
}
)