forked from tswsxk/spark_learning
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (41 loc) · 831 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
from setuptools import setup, find_packages
test_deps = [
'pytest>=4',
'pytest-cov>=2.6.0',
'flake8'
]
spider_deps = [
"google-api-python-client",
]
setup(
name='spark_learning',
version='0.0.1',
packages=find_packages(
include=[
"spark_learning", "spark_learning.*"
],
),
extras_require={
'test': test_deps,
'spider': spider_deps
},
install_requires=[
"pandas",
"numpy",
"scikit-learn",
"dill",
"tqdm",
"loguru",
"lightgbm",
"jupyter",
"openpyxl",
"matplotlib",
"fire",
'db-dtypes',
], # And any other dependencies for needs
entry_points={
"console_scripts": [
"tsl = spark_learning.main:main"
],
},
)