forked from kubeflow/fairing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (38 loc) · 1.32 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
import setuptools
with open('requirements.txt') as f:
REQUIRES = f.read().splitlines()
setuptools.setup(
name='kubeflow-fairing',
version='1.0.2',
author="Kubeflow Authors",
author_email='[email protected]',
license="Apache License Version 2.0",
description="Kubeflow Fairing Python SDK.",
long_description="Python SDK for Kubeflow Fairing components.",
url="https://github.com/kubeflow/fairing",
packages=setuptools.find_packages(
include=("kubeflow*", "containerregistry*",)),
package_data={'': ['requirements.txt']},
include_package_data=True,
zip_safe=False,
classifiers=(
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
),
install_requires=REQUIRES,
extras_require={
'dev': [
'pytest',
'pytest-pep8',
'pytest-cov'
]
}
)