-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
45 lines (38 loc) · 1.38 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
import sys
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
class PyTest(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
import pytest
sys.exit(pytest.main(self.test_args))
version = "1.0.5"
setup(
name="kubeluigi",
version=version,
url="https://github.com/optimizely/kubeluigi",
description="Luigi contribution to run Tasks as Kubernetes Jobs",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Topic :: Software Development",
"Environment :: Plugins",
],
keywords="Kubeluigi Kubernetes luigi pipelines pipeline kubetask",
author="Optimizely Datascience",
author_email="[email protected]",
license="Apache License 2.0",
packages=find_packages(exclude=["tests"]),
cmdclass={"test": PyTest},
install_requires=["kubernetes>=17.17.0", "luigi", "PyYaml==5.4.1"],
entry_points={},
)