Skip to content

Commit 05d0055

Browse files
committed
setup for pypi.org release
1 parent b8d126e commit 05d0055

File tree

2 files changed

+32
-1
lines changed

2 files changed

+32
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# python-cmixapi-client
22

3-
<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>
3+
<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>
44

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

setup.py

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
import setuptools
2+
3+
with open("README.md", "r") as fh:
4+
long_description = fh.read()
5+
6+
setuptools.setup(
7+
name="python-cmixapi-client",
8+
version="0.1.0",
9+
author="Bradley Wogsland",
10+
author_email="bradley@wogsland.org",
11+
description="A Python client for the Cmix API.",
12+
long_description=long_description,
13+
long_description_content_type="text/markdown",
14+
url="https://github.com/dynata/python-cmixapi-client",
15+
packages=setuptools.find_packages(exclude=('tests', )),
16+
platforms=['Any'],
17+
install_requires=['requests'],
18+
setup_requires=['pytest-runner'],
19+
tests_require=['pytest'],
20+
keywords='cmix api dynata popresearch',
21+
classifiers=[
22+
'Intended Audience :: Developers',
23+
'Operating System :: OS Independent',
24+
'Topic :: Software Development :: Libraries :: Python Modules',
25+
'Programming Language :: Python',
26+
'Programming Language :: Python :: 2',
27+
'Programming Language :: Python :: 2.7',
28+
'Programming Language :: Python :: 3',
29+
'Programming Language :: Python :: 3.6',
30+
],
31+
)

0 commit comments

Comments
 (0)