|
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. # noqa: E501 |
| 6 | + # Introduction |
| 7 | +
|
| 8 | + The Dyspatch API is based on the REST paradigm, and features resource |
| 9 | + based URLs with standard HTTP response codes to indicate errors. We use |
| 10 | + standard HTTP authentication and request verbs, and all responses are JSON formatted. |
| 11 | + See our [Implementation Guide](https://docs.dyspatch.io/development/implementing_dyspatch/) |
| 12 | + for more details on how to implement Dyspatch. |
7 | 13 |
|
8 | 14 | OpenAPI spec version: 2018.02 |
9 | 15 | Contact: support@dyspatch.io |
|
13 | 19 |
|
14 | 20 | from setuptools import setup, find_packages # noqa: H301 |
15 | 21 |
|
16 | | -NAME = "dyspatch-python-client" |
| 22 | +NAME = "dyspatch-python" |
17 | 23 | VERSION = "1.0.0" |
18 | 24 | # To install the library, run the following |
19 | 25 | # |
|
27 | 33 | setup( |
28 | 34 | name=NAME, |
29 | 35 | version=VERSION, |
30 | | - description="Dyspatch API", |
| 36 | + description="Dyspatch API Client", |
31 | 37 | author_email="support@dyspatch.io", |
32 | | - url="", |
33 | | - keywords=["Swagger", "Dyspatch API"], |
| 38 | + url="https://github.com/getdyspatch/dyspatch-python", |
| 39 | + keywords=["Swagger", "Dyspatch API", "OpenAPI"], |
34 | 40 | install_requires=REQUIRES, |
35 | 41 | packages=find_packages(), |
36 | 42 | include_package_data=True, |
37 | 43 | long_description="""\ |
38 | | - # 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. # noqa: E501 |
39 | | - """ |
| 44 | + # Introduction |
| 45 | +
|
| 46 | + The Dyspatch API is based on the REST paradigm, and features resource |
| 47 | + based URLs with standard HTTP response codes to indicate errors. |
| 48 | + We use standard HTTP authentication and request verbs, and all responses |
| 49 | + are JSON formatted. See our |
| 50 | + [Implementation Guide](https://docs.dyspatch.io/development/implementing_dyspatch/) |
| 51 | + for more details on how to implement Dyspatch. |
| 52 | + """, |
40 | 53 | ) |
0 commit comments