├── README ├── .gitignore ├── church_of_jesus_christ_api ├── __init__.py ├── __version__.py ├── church_of_jesus_christ_api.py └── README └── setup.py /README: -------------------------------------------------------------------------------- 1 | church_of_jesus_christ_api/README -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | dist/ 3 | __pycache__/ 4 | *.egg-info/ -------------------------------------------------------------------------------- /church_of_jesus_christ_api/__init__.py: -------------------------------------------------------------------------------- 1 | from .church_of_jesus_christ_api import * 2 | -------------------------------------------------------------------------------- /church_of_jesus_christ_api/__version__.py: -------------------------------------------------------------------------------- 1 | """Contains the project version number""" 2 | 3 | __version__ = "0.4.0" 4 | -------------------------------------------------------------------------------- /church_of_jesus_christ_api/church_of_jesus_christ_api.py: -------------------------------------------------------------------------------- 1 | import importlib.resources 2 | 3 | with importlib.resources.open_text(__package__, "README") as readme: 4 | readme_contents = readme.read() 5 | 6 | class ChurchOfJesusChristAPI(object): 7 | raise ImportError(readme_contents) -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- 1 | import pathlib 2 | from setuptools import setup 3 | 4 | # Set __version__ without importing anything and causing issues at package build time 5 | with open("church_of_jesus_christ_api/__version__.py") as version_file: 6 | exec(version_file.read()) 7 | 8 | # The directory containing this file 9 | HERE = pathlib.Path(__file__).parent 10 | 11 | # The text of the README file 12 | README = (HERE / "README").read_text() 13 | 14 | # This call to setup() does all the work 15 | setup( 16 | name="church_of_jesus_christ_api", 17 | version=__version__, 18 | description="Decommisioned package", 19 | long_description=README, 20 | long_description_content_type="text/plain", 21 | author="Michael Mackliet", 22 | author_email="michael@mackliet.com", 23 | url="https://github.com/mackliet/church_of_jesus_christ_api", 24 | package_data={ 25 | "church_of_jesus_christ_api": ["README"] 26 | } 27 | ) 28 | -------------------------------------------------------------------------------- /church_of_jesus_christ_api/README: -------------------------------------------------------------------------------- 1 | By request of the Church's Intellectual Property Division, the church_of_jesus_christ_api package has been removed in order to protect the personal data of Church members and comply with the Church's Terms of Use, the Church's Technology Standards, and the Church's General Handbook. 2 | 3 | Church Terms of Use (See Code of Conduct) 4 | https://www.churchofjesuschrist.org/legal/terms-of-use 5 | 6 | Church Technology Standards (See Section 4.8) 7 | https://www.churchofjesuschrist.org/tools/help/technology-standards 8 | 9 | Church General Handbook (See Sections 32.6.3.4, 33.9.1, 33.8.20) 10 | https://www.churchofjesuschrist.org/study/manual/general-handbook 11 | 12 | In order to protect member data and ensure legal compliance with local laws and regulations, please only use official Church resources to access membership data for official Church use. 13 | 14 | If official Church software resources could be improved to help you fulfill Church duties, please provide feedback at: 15 | https://research.churchofjesuschrist.org/jfe/form/SV_da3uAscVgcSOlxA --------------------------------------------------------------------------------