-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
41 lines (40 loc) · 1.36 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
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='GithubClassifier',
author='Maxim Schuwalow, Fabian Richter, Tobias Ludwig',
author_email='mschuwalow@uos.de',
packages=['classification'],
install_requires=["beautifulsoup4 == 4.5.3",
'boto==2.45.0',
'bs4==0.0.1',
'bson==0.4.3',
'bz2file==0.98',
'clipboard==0.0.4',
'gensim==0.13.4.1',
'github3.py==0.9.6',
'Markdown==2.6.7',
'numpy==1.11.3',
'protobuf==3.0.0',
'pymongo==3.4.0',
'pyperclip==1.5.27',
'pytz==2016.10',
'requests==2.20.0',
'simplejson==3.10.0',
'six==1.10.0',
'smart-open==1.3.5',
'uritemplate==3.0.0',
'uritemplate.py==3.0.2',
# 'tensorflow == 0.12.1', not in pip for ubuntu
'more-itertools==2.5.0',
'flask==1.0',
'flask-cors==3.0.2',
'urllib3==1.24.2'
],
zip_safe=False,
entry_points={
"console_scripts": [
"github-classify=classification.eval:start_eval_server",
],
},
)