|
1 | 1 | import setuptools |
2 | 2 |
|
3 | | - |
4 | 3 | version = {} |
5 | 4 | with open("./cms_bluebutton/version.py") as fp: |
6 | 5 | exec(fp.read(), version) |
7 | 6 |
|
8 | | -with open("README.md", "r", encoding="utf-8") as fh: |
9 | | - long_description = fh.read() |
10 | | - |
11 | | -setuptools.setup( |
12 | | - name="cms-bluebutton-sdk", |
13 | | - version=version['__version__'], |
14 | | - author="CMS Blue Button 2.0 Team", |
15 | | - author_email="BlueButtonAPI@cms.hhs.gov", |
16 | | - license="CC0 1.0 Universal", |
17 | | - description="An SDK used for interacting with the CMS Blue Button 2.0 API", |
18 | | - long_description=long_description, |
19 | | - long_description_content_type="text/markdown", |
20 | | - url="https://github.com/CMSgov/cms-bb2-python-sdk", |
21 | | - # For classifiers: https://pypi.org/classifiers/ |
22 | | - classifiers=[ |
23 | | - "Programming Language :: Python :: 3", |
24 | | - "License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", |
25 | | - "Operating System :: OS Independent", |
26 | | - "Development Status :: 5 - Production/Stable", |
27 | | - "Intended Audience :: Developers", |
28 | | - "Intended Audience :: Healthcare Industry", |
29 | | - "Topic :: Software Development", |
30 | | - "Topic :: Software Development :: Libraries :: Python Modules", |
31 | | - ], |
32 | | - packages=setuptools.find_packages(), |
33 | | - python_requires=">=3.6", |
34 | | - install_requires=[ |
35 | | - "requests >= 2.0", |
36 | | - "requests-toolbelt >= 0.9.1", |
37 | | - "pyyaml >= 5.0", |
38 | | - ], |
39 | | - extras_require={ |
40 | | - "dev": [ |
41 | | - "pytest >= 6.0", |
42 | | - "requests-mock >= 1.9.3", |
43 | | - ], |
44 | | - }, |
45 | | -) |
| 7 | +setuptools.setup(version=version['__version__']) |
0 commit comments