-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
executable file
·39 lines (37 loc) · 997 Bytes
/
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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import sys
if sys.version_info[0] == 2:
ete_requirement = 'ete2'
elif sys.version_info[0] == 3:
ete_requirement = 'ete3'
setup(
name='pystyl',
version='0.0.1',
author='Folgert Karsdorp and Mike Kestemont',
author_email='mike.kestemont@gmail.com',
packages=['app', 'pystyl', 'pystyl.clustering'],
package_dir={'pystyl': 'pystyl'},
package_data={'pystyl': ['pronouns/*.txt']},
include_package_data=True,
url='http://pypi.python.org/pypi/pystyl/',
scripts=['pystyl/bin/pystyl'],
license='LICENSE.txt',
description='Computational Stylistics in Python',
long_description=open('README.md').read(),
install_requires=[
'numpy',
'scikit-learn',
'seaborn',
'nltk',
'matplotlib',
ete_requirement,
'flask',
'scipy',
'pandas',
'bokeh',
'dendropy',
],
)