Tree changed once more

This commit is contained in:
Profitroll 2022-09-22 19:27:34 +02:00
parent 64328261ab
commit 930157bad3
12 changed files with 20 additions and 3 deletions

4
.gitignore vendored
View File

@ -155,4 +155,6 @@ cython_debug/
# Custom
tests
test_all.py
test_all.py
build.*
cleanup.*

View File

@ -31,7 +31,7 @@ really sophisticated. However I'm not sure whether RMV supports that many HAFAS
"""
__name__ = "pyrmv"
__version__ = "0.1.0"
__version__ = "0.1.6"
__license__ = "MIT License"
__author__ = "Profitroll"

3
setup.cfg Normal file
View File

@ -0,0 +1,3 @@
[metadata]
description_file=README.md
license_files=LICENSE

View File

@ -2,10 +2,22 @@ from setuptools import setup
setup(
name="pyrmv",
version="0.1.0",
version="0.1.6",
author="Profitroll",
description="Small module that makes your journey with RMV REST API somehow easier.",
long_description="# PythonRMV\n\nSmall module that makes your journey with RMV REST API somehow easier. Based fully on official RMV API reference and HAFAS documentation.\n\n# Frequently Asked Questions\n\n- [Why are there raw versions and formatted ones?](#why-are-there-raw-versions-and-formatted-ones)\n- [Some methods work slightly different](#some-methods-work-slightly-different)\n- [Documentation is not perfectly clear](#documentation-is-not-perfectly-clear)\n\n## Why are there raw versions and formatted ones?\n\nFor the purposes of my projects I don't really need all the stuff RMV gives (even though it's not much).\nI only need some specific things. However I do understand that in some cases other users may find\nthose methods quite useful so I implemented them as well.\n\n\n## Some methods work slightly different\n\nCan be. Not all function arguments written may work perfectly because I simply did not test each and\nevery request. Some of arguments may be irrelevant in my use-case and the others are used quite rare at all.\nJust [make an issue](https://git.end-play.xyz/profitroll/PythonRMV/issues/new) and I'll implement it correct when I'll have some free time.\n\n## Documentation is not perfectly clear\n\nOf course docs cannot be perfect as a python docstring, especially if sometimes I don't\nknow how things should correctly work. That's why you get HAFAS API docs in addition to your\nRMV API key. Just use my functions together with those docs, if you want to build something\nreally sophisticated. However I'm not sure whether RMV supports that many HAFAS features publicly.\n\n# To-Do\n- [ ] arrivalBoard (boardArrival) \n- [ ] departureBoard (boardArrival) \n- [x] himsearch (himSearch) \n- [ ] journeyDetail \n- [x] location.nearbystops (stopByCoords) \n- [x] location.name (stopByName) \n- [ ] recon \n- [x] trip (findRoute)",
long_description_content_type="text/markdown",
author_email="profitroll@end-play.xyz",
url="https://git.end-play.xyz/profitroll/pyrmv",
project_urls={
"Bug Tracker": "https://git.end-play.xyz/profitroll/pyrmv/issues",
"Documentation": "https://git.end-play.xyz/profitroll/pyrmv/wiki",
"Source Code": "https://git.end-play.xyz/profitroll/pyrmv.git",
},
packages=[
"pyrmv",
"pyrmv.raw"
],
install_requires=[
"requests",
"xmltodict"