project now on PyPi
This commit is contained in:
parent
98d2f202fb
commit
3fb364b3e4
2
.gitignore
vendored
2
.gitignore
vendored
@ -23,6 +23,8 @@ lib
|
|||||||
lib64
|
lib64
|
||||||
share
|
share
|
||||||
pyvenv.cfg
|
pyvenv.cfg
|
||||||
|
templates
|
||||||
|
*.egg-info
|
||||||
|
|
||||||
# Unit test / coverage reports
|
# Unit test / coverage reports
|
||||||
.coverage
|
.coverage
|
||||||
|
21
LICENSE.txt
Normal file
21
LICENSE.txt
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
MIT License
|
||||||
|
|
||||||
|
Copyright (c) 2019 DANIEL TESFAI
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
@ -18,7 +18,7 @@ python setup.py install
|
|||||||
|
|
||||||
### Requirements
|
### Requirements
|
||||||
|
|
||||||
- Python 2.7+ or 3.4+
|
- Python 3.4+
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
|
40
setup.py
40
setup.py
@ -1,53 +1,23 @@
|
|||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
from setuptools import setup, find_packages
|
from setuptools import setup, find_packages
|
||||||
from setuptools.command.test import test as TestCommand
|
|
||||||
|
|
||||||
class PyTest(TestCommand):
|
with open("README.md", "r") as fh:
|
||||||
user_options = [("pytest-args=", "a", "Arguments to pass to pytest")]
|
long_description = fh.read()
|
||||||
|
|
||||||
def initialize_options(self):
|
|
||||||
TestCommand.initialize_options(self)
|
|
||||||
self.pytest_args = "-n auto"
|
|
||||||
|
|
||||||
def run_tests(self):
|
|
||||||
import shlex
|
|
||||||
import pytest
|
|
||||||
|
|
||||||
errno = pytest.main(shlex.split(self.pytest_args))
|
|
||||||
sys.exit(errno)
|
|
||||||
|
|
||||||
here = os.path.abspath(os.path.dirname(__file__))
|
|
||||||
|
|
||||||
version_contents = {}
|
|
||||||
with open(os.path.join(here, "voipms", "version.py"), encoding="utf-8") as f:
|
|
||||||
exec(f.read(), version_contents)
|
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="voipms-python",
|
name="voipms-python",
|
||||||
version=version_contents["VERSION"],
|
version="0.0.1",
|
||||||
description="Python wrapper for the voip.ms REST API",
|
description="Python wrapper for the voip.ms REST API",
|
||||||
|
long_description=long_description,
|
||||||
|
long_description_content_type="text/markdown",
|
||||||
author="Daniel Tesfai",
|
author="Daniel Tesfai",
|
||||||
author_email="danielmtesfai@gmail.com",
|
author_email="danielmtesfai@gmail.com",
|
||||||
url="https://github.com/dtesfai/voipms-python",
|
url="https://github.com/dtesfai/voipms-python",
|
||||||
license="MIT",
|
license="MIT",
|
||||||
keywords="voipms api",
|
keywords="voipms api",
|
||||||
packages=find_packages(exclude=["tests", "tests.*"]),
|
packages=find_packages(exclude=["tests", "tests.*"]),
|
||||||
zip_safe=False,
|
|
||||||
install_requires=[
|
|
||||||
'requests >= 2.20; python_version >= "3.0"'
|
|
||||||
],
|
|
||||||
python_requires=">=3.4",
|
python_requires=">=3.4",
|
||||||
tests_require=[
|
|
||||||
"pytest >= 4.6.2, < 4.7",
|
|
||||||
"pytest-mock >= 1.10.4",
|
|
||||||
"pytest-xdist >= 1.28.0",
|
|
||||||
"pytest-cov >= 2.7.1",
|
|
||||||
# coverage 5.0 pre-releases don't work, and setuptools doesn't ignore
|
|
||||||
# pre-releases (cf. https://github.com/pypa/setuptools/issues/855)
|
|
||||||
"coverage >= 4.5.3, < 5",
|
|
||||||
],
|
|
||||||
cmdclass={"test": PyTest},
|
|
||||||
project_urls={
|
project_urls={
|
||||||
"Bug Tracker": "https://github.com/dtesfai/voipms-python/issues",
|
"Bug Tracker": "https://github.com/dtesfai/voipms-python/issues",
|
||||||
"Source Code": "https://github.com/dtesfai/voipms-python",
|
"Source Code": "https://github.com/dtesfai/voipms-python",
|
||||||
|
Loading…
Reference in New Issue
Block a user