Skip to content

Commit

Permalink
setup for pypi.org release
Browse files Browse the repository at this point in the history
  • Loading branch information
wogsland committed Jan 14, 2020
1 parent b8d126e commit 05d0055
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# python-cmixapi-client

<a href="https://github.com/dynata/python-cmixapi-client"><img alt="GitHub Actions status" src="https://github.com/dynata/python-cmixapi-client/workflows/python-tests/badge.svg"></a>
<a href="https://github.com/dynata/python-cmixapi-client/actions"><img alt="GitHub Actions status" src="https://github.com/dynata/python-cmixapi-client/workflows/python-tests/badge.svg"></a>

A Python client library for the [Dynata Cmix API](https://wiki2.criticalmix.net/display/CA/Getting+started).

Expand Down
31 changes: 31 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
import setuptools

with open("README.md", "r") as fh:
long_description = fh.read()

setuptools.setup(
name="python-cmixapi-client",
version="0.1.0",
author="Bradley Wogsland",
author_email="bradley@wogsland.org",
description="A Python client for the Cmix API.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/dynata/python-cmixapi-client",
packages=setuptools.find_packages(exclude=('tests', )),
platforms=['Any'],
install_requires=['requests'],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
keywords='cmix api dynata popresearch',
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
)

0 comments on commit 05d0055

Please sign in to comment.