-
Notifications
You must be signed in to change notification settings - Fork 48
/
setup.py
executable file
·73 lines (67 loc) · 2 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#!/usr/bin/env python
from setuptools import setup
import re
import os
def get_version():
fn = os.path.join(os.path.dirname(__file__), "formasaurus", "__init__.py")
with open(fn) as f:
return re.findall("__version__ = '([\d\.\w]+)'", f.read())[0]
with_deps_extras = [
'scikit-learn >= 0.18',
'scipy',
'lxml',
'sklearn-crfsuite >= 0.3.1',
'joblib',
]
setup(
name='formasaurus',
version=get_version(),
author='Mikhail Korobov',
author_email='[email protected]',
license='MIT license',
long_description=open('README.rst').read() + "\n\n" + open('CHANGES.rst').read(),
description="Formasaurus tells you the types of HTML forms and their fields using machine learning",
url='https://github.com/TeamHG-Memex/Formasaurus',
zip_safe=False,
packages=['formasaurus'],
install_requires=[
"tqdm >= 2.0",
"tldextract",
"docopt",
"six",
"requests",
"w3lib >= 1.13.0",
],
package_data={
'formasaurus': [
'data/*.json',
'data/html/*.html'
],
},
extras_require={
# Work around https://github.com/pypa/pip/issues/3032
'with-deps': with_deps_extras,
'with_deps': with_deps_extras,
'annotation': [
'ipython[notebook] >= 4.0',
'ipywidgets',
'Tornado>=4.0.0',
],
},
entry_points={
'console_scripts': ['formasaurus = formasaurus.__main__:main']
},
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)