-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (27 loc) · 1.01 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name='GCorpusAnalytics',
version='0.1.0',
description='Serialize queries on the number of items in Google corpora',
author='Thomas Favre-Bulle',
author_email='[email protected]',
url='https://github.com/Erispoe/GCorpusAnalytics',
packages=['GCorpusAnalytics'],
long_description=open('README.md').read(),
package_data= {'Useragents': ['data/Useragents.txt']},
install_requires=[
"beautifulsoup4 >= 4.3.1",
],
classifiers=[
'Programming Language :: Python :: 2',
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: Information Analysis',
],
)