forked from mozilla/webcompat-ml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (37 loc) · 1.14 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
import io
import os
import re
from setuptools import find_packages
from setuptools import setup
setup(
name="webcompat_ml",
version="0.0.1",
url="https://github.com/mozilla/webcompat-ml",
author="John Giannelos",
author_email="[email protected]",
description="WebCompat machine learning pipeline",
packages=find_packages(where="src"),
package_dir={"": "src"},
package_data={
"": [
"models/invalid/model.bin",
"models/invalid/encoders/*",
"models/invalid/metadata/*",
"utils/encoders/*.joblib",
]
},
entry_points={
"console_scripts": [
"webcompat-ml-invalid=webcompat_ml.models.invalid.cli:main",
"webcompat-ml-needsdiagnosis=webcompat_ml.models.needsdiagnosis.cli:main",
]
},
install_requires=["scikit-learn", "pandas", "xgboost", "click"],
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
],
license="MPL 2.0",
)