forked from equinor/tdd_workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 732 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 732 Bytes
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
from setuptools import setup, find_packages
setup(
name="workshop",
version="0.0.1",
author="hnfo",
author_email="hnfo@equinor.com",
description="TDD workshop",
keywords=[
"tests",
],
classifiers=[
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Learning :: Software Test",
],
entry_points={
"console_scripts": ["treasure-hunt=tdd_workshop.cli:main"],
},
packages=find_packages(where="src", exclude=["tests"]),
package_dir={"": "src"},
install_requires=["click"],
test_suite="tests",
)