forked from moritzschaefer/the-search-engine
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·30 lines (28 loc) · 859 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
#!/usr/bin/env python3
from setuptools import find_packages, setup
EXCLUDE_FROM_PACKAGES = []
setup(
name='tsg',
version=0.01,
# url='',
author='Moritz, Miguel and Brian',
author_email='mail@moritzs.de',
description=('A cool search engine and \
crawler for http://dblp.uni-trier.de/'),
license='',
packages=find_packages(exclude=EXCLUDE_FROM_PACKAGES),
include_package_data=True,
scripts=['./bin/tsg_crawl',
'./bin/tsg_index',
'./bin/tsg_parse',
'./bin/tsg_intermediate'],
install_requires=['requests',
'nose',
'lxml',
'mock',
'pandas',
'numpy',
'flask',
'validators',
'scipy']
)