|
| 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