Skip to content

Commit

Permalink
Merge pull request #5 from tolstislon/methods_enum
Browse files Browse the repository at this point in the history
Methods enum
  • Loading branch information
tolstislon authored Aug 9, 2019
2 parents 81715f6 + 0a259e7 commit 4cc145f
Show file tree
Hide file tree
Showing 8 changed files with 214 additions and 95 deletions.
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,4 @@ venv.bak/
# mypy
.mypy_cache/
.idea/
Pipfile
Pipfile.lock
/.pypirc
13 changes: 13 additions & 0 deletions Pipfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true

[dev-packages]
m2r = "*"

[packages]
requests = "*"

[requires]
python_version = "3.7"
80 changes: 80 additions & 0 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 2 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
from m2r import parse_from_file
from setuptools import setup

import testrail_api

with open('readme.rst', 'r') as file:
long_description = file.read()

setup(
name='testrail_api',
version=testrail_api.__version__,
Expand All @@ -14,7 +12,7 @@
author='tolstislon',
author_email='tolstislon@gmail.com',
description='Python wrapper of the TestRail API',
long_description=long_description,
long_description=parse_from_file('README.md'),
install_requires=['requests>=2.20.1'],
python_requires='>=3.6',
include_package_data=True,
Expand Down
2 changes: 1 addition & 1 deletion testrail_api/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from ._testrail_api import TestRailAPI

__version__ = '1.0.1'
__version__ = '1.1.0'

__all__ = ['TestRailAPI']
Loading

0 comments on commit 4cc145f

Please sign in to comment.