-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (30 loc) · 1.04 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="nothelm.py",
scripts=["bin/nothelm"],
version="0.2.3",
author="NeuroForge GmbH & Co. KG",
author_email="[email protected]",
description="nothelm.py",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://neuroforge.de/",
package_data={"nothelm": ["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=["jinja2", "pyyaml", "click>=7.0"],
extras_require={"dev": []},
)