forked from prasadtalasila/IRCLogParser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
52 lines (48 loc) · 1.33 KB
/
setup.py
File metadata and controls
52 lines (48 loc) · 1.33 KB
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
from setuptools import setup, find_packages
from os import path
from codecs import open
import numpy
import scipy
current_path = path.abspath(path.dirname(__file__))
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',
description='A Parser for IRC chat Logs',
long_description=long_description,
url='https://github.com/prasadtalasila/IRCLogParser',
download_url='https://github.com/prasadtalasila/IRCLogParser/archive/v1.0.1.tar.gz',
author='Prasad Talasila',
author_email='tsrkp@goa.bits-pilani.ac.in',
license='MIT',
keywords='IRC parser data-analysis research development',
packages=['IRCLogParser'],
install_requires=[
'scipy',
'numpy',
'networkx',
'matplotlib',
'pygraphviz',
'scikit-learn',
'pandas',
'python-igraph',
'sphinx',
'pyyaml',
't3SphinxThemeRtd',
't3fieldlisttable',
't3tablerows',
't3targets',
'sphinxcontrib-googlechart',
'sphinxcontrib-googlemaps',
'sphinxcontrib-httpdomain',
'sphinxcontrib-slide',
'sphinxcontrib.youtube',
'nltk',
'plotly',
'ddt'
],
)