|
3 | 3 | """ |
4 | 4 | Dyspatch API |
5 | 5 |
|
6 | | - # Introduction The Dyspatch API is based on the REST paradigm, and features resource based URLs with standard HTTP response codes to indicate errors. We use standard HTTP authentication and request verbs, and all responses are JSON formatted. See our [Implementation Guide](https://docs.dyspatch.io/development/implementing_dyspatch/) for more details on how to implement Dyspatch. ## API Client Libraries Dyspatch provides API Clients for popular languages and web frameworks. - [Java](https://github.com/getdyspatch/dyspatch-java) - [Javascript](https://github.com/getdyspatch/dyspatch-javascript) - [Python](https://github.com/getdyspatch/dyspatch-python) - [C#](https://github.com/getdyspatch/dyspatch-dotnet) - [Go](https://github.com/getdyspatch/dyspatch-golang) - [Ruby](https://github.com/getdyspatch/dyspatch-ruby) # noqa: E501 |
| 6 | + # Introduction |
| 7 | +
|
| 8 | + The Dyspatch API is based on the REST paradigm, and features resource based URLs with standard HTTP response codes to indicate errors. We use standard HTTP authentication and request verbs, and all responses are JSON formatted. See our [Implementation Guide](https://docs.dyspatch.io/development/implementing_dyspatch/) for more details on how to implement Dyspatch. ## API Client Libraries Dyspatch provides API Clients for popular languages and web frameworks. - [Java](https://github.com/getdyspatch/dyspatch-java) - [Javascript](https://github.com/getdyspatch/dyspatch-javascript) - [Python](https://github.com/getdyspatch/dyspatch-python) - [C#](https://github.com/getdyspatch/dyspatch-dotnet) - [Go](https://github.com/getdyspatch/dyspatch-golang) - [Ruby](https://github.com/getdyspatch/dyspatch-ruby) # noqa: E501 |
7 | 9 |
|
8 | 10 | OpenAPI spec version: 2019.03 |
9 | 11 | Contact: support@dyspatch.io |
|
23 | 25 |
|
24 | 26 | REQUIRES = ["urllib3 >= 1.15", "six >= 1.10", "certifi", "python-dateutil"] |
25 | 27 |
|
| 28 | +with open("README.md") as fp: |
| 29 | + long_description = fp.read() |
| 30 | + |
26 | 31 | setup( |
27 | 32 | name=NAME, |
28 | 33 | version=VERSION, |
29 | | - description="Dyspatch API", |
| 34 | + description="Dyspatch API Client", |
30 | 35 | author_email="support@dyspatch.io", |
31 | | - url="", |
32 | | - keywords=["Swagger", "Dyspatch API"], |
| 36 | + url="https://github.com/getdyspatch/dyspatch-python", |
| 37 | + keywords=["Swagger", "Dyspatch API", "OpenAPI"], |
33 | 38 | install_requires=REQUIRES, |
34 | 39 | packages=find_packages(), |
35 | 40 | include_package_data=True, |
36 | | - long_description="""\ |
37 | | - # Introduction The Dyspatch API is based on the REST paradigm, and features resource based URLs with standard HTTP response codes to indicate errors. We use standard HTTP authentication and request verbs, and all responses are JSON formatted. See our [Implementation Guide](https://docs.dyspatch.io/development/implementing_dyspatch/) for more details on how to implement Dyspatch. ## API Client Libraries Dyspatch provides API Clients for popular languages and web frameworks. - [Java](https://github.com/getdyspatch/dyspatch-java) - [Javascript](https://github.com/getdyspatch/dyspatch-javascript) - [Python](https://github.com/getdyspatch/dyspatch-python) - [C#](https://github.com/getdyspatch/dyspatch-dotnet) - [Go](https://github.com/getdyspatch/dyspatch-golang) - [Ruby](https://github.com/getdyspatch/dyspatch-ruby) # noqa: E501 |
38 | | - """ |
| 41 | + long_description=long_description, |
39 | 42 | ) |
0 commit comments