Skip to content

Commit f0e8beb

Browse files
martynbristowstanislavulrych
authored andcommitted
Include Requirements to install dependencies
* add install_requires * fix spelling * description-file -> description_file * exclude tests from python package Signed-off-by: Martyn Bristow <[email protected]>
1 parent 1567886 commit f0e8beb

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Tempo Rest API documentation can be found at https://apidocs.tempo.io/
1010

1111
## Installation
1212

13-
Install current reelase by pip
13+
Install current release by pip
1414

1515
```
1616
pip install tempo-api-python-client

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[metadata]
2-
description-file = README.md
2+
description_file = README.md
33

44
[tool:pytest]
55
testpaths = tests

setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,15 @@
1212
long_description=long_description,
1313
long_description_content_type="text/markdown",
1414
url="https://github.com/stanislavulrych/tempo-api-python-client",
15-
packages=setuptools.find_packages(),
15+
packages=setuptools.find_packages(exclude=('tests',)),
1616
classifiers=[
1717
"Programming Language :: Python :: 3",
1818
"License :: OSI Approved :: Apache Software License",
1919
"Operating System :: OS Independent",
2020
],
21+
install_requires=[
22+
"requests",
23+
"six"
24+
],
2125
python_requires='>=3.6.9',
2226
)

0 commit comments

Comments
 (0)