-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (38 loc) · 1.34 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
# pylint: disable = C0111
from setuptools import find_packages, setup
with open("README.md", "r") as f:
DESCRIPTION = f.read()
setup(name="kernelpipes",
version="1.2.1",
author="NeuML",
description="Kaggle Kernel Pipelines",
long_description=DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/neuml/kernelpipes",
project_urls={
"Documentation": "https://github.com/neuml/kernelpipes",
"Issue Tracker": "https://github.com/neuml/kernelpipes/issues",
"Source Code": "https://github.com/neuml/kernelpipes",
},
license="Apache 2.0: http://www.apache.org/licenses/LICENSE-2.0",
packages=find_packages(where="src/python"),
package_dir={"": "src/python"},
keywords="kaggle job task machine-learning",
python_requires=">=3.6",
entry_points={
"console_scripts": [
"kernelpipes = kernelpipes.pipeline:main",
],
},
install_requires=[
"croniter>=0.3.32",
"kaggle>=1.5.6",
"PyYAML>=5.3"
],
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development",
"Topic :: Utilities"
])