voipms-python/setup.py

38 lines
1.3 KiB
Python
Raw Permalink Normal View History

2019-08-18 02:02:44 +00:00
from setuptools import setup, find_packages
2019-09-03 21:04:43 +00:00
with open("README.md", "r") as fh:
long_description = fh.read()
2019-08-18 02:02:44 +00:00
setup(
name="voipms-python",
2022-12-15 23:27:25 +00:00
version="0.1.0",
2019-08-18 02:02:44 +00:00
description="Python wrapper for the voip.ms REST API",
2019-09-03 21:04:43 +00:00
long_description=long_description,
long_description_content_type="text/markdown",
2019-08-18 02:02:44 +00:00
author="Daniel Tesfai",
author_email="danielmtesfai@gmail.com",
url="https://github.com/dtesfai/voipms-python",
license="MIT",
2022-07-06 04:15:43 +00:00
install_requires=['requests'],
2019-08-18 02:02:44 +00:00
keywords="voipms api",
packages=find_packages(exclude=["tests", "tests.*"]),
python_requires=">=3.4",
project_urls={
"Bug Tracker": "https://github.com/dtesfai/voipms-python/issues",
"Source Code": "https://github.com/dtesfai/voipms-python",
},
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
],
2020-03-17 02:58:09 +00:00
)