-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
35 lines (30 loc) · 1.05 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
import setuptools
import unittest
def cli_test_suite():
test_loader = unittest.TestLoader()
test_suite = test_loader.discover("tests", pattern="test_*.py")
return test_suite
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="docker-sdp",
scripts=["bin/docker-sdp"],
version="0.2.10",
author="NeuroForge GmbH & Co. KG",
author_email="[email protected]",
description="docker-sdp",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://neuroforge.de/",
package_data={"docker_stack_deploy": ["py.typed"]},
packages=setuptools.find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
classifiers=[
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
],
test_suite="setup.cli_test_suite",
python_requires=">=3.8",
install_requires=["pyyaml", "mypy>=0.800"],
extras_require={"dev": []},
)