Skip to content

Commit cab1741

Browse files
committed
Some changes in setup.py
1 parent e11fb9c commit cab1741

File tree

8 files changed

+9
-6
lines changed

8 files changed

+9
-6
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
.idea/
22
.DS_Store
33
dist
4-
MANIFEST
4+
MANIFEST
5+
reportportal_client.egg-info

reportportal_client/service/service.py renamed to reportportal_client/service.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
import requests
44

5-
from .model.response import EntryCreatedRS, OperationCompletionRS
5+
from reportportal_client.model.response import (EntryCreatedRS,
6+
OperationCompletionRS)
67

78

89
def print_request(r):

reportportal_client/service/model/__init__.py

Whitespace-only changes.

setup.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
1-
from distutils.core import setup
1+
from setuptools import setup, find_packages
22

33
setup(
44
name='reportportal-client',
5-
packages=['reportportal-client'],
6-
version='0.1',
5+
packages=find_packages(),
6+
version='0.1.2',
77
description='Python client for ReportPortal',
88
author='Artsiom Tkachou',
99
author_email='[email protected]',
1010
url='https://github.com/epam/ReportPortal-Python-Client',
11-
download_url='https://github.com/epam/ReportPortal-Python-Client/tarball/0.1',
11+
download_url='https://github.com/epam/ReportPortal-Python-Client/tarball/0.1.2',
1212
keywords=['testing', 'reporting', 'reportportal'],
1313
classifiers=[],
14+
install_requires=[i.strip() for i in open("requirements.txt").readlines()],
1415
)

0 commit comments

Comments
 (0)