Skip to content

Commit 52592d8

Browse files
authored
Clean up setup.py for upload to PyPI (#1)
1 parent 2759c5a commit 52592d8

1 file changed

Lines changed: 20 additions & 7 deletions

File tree

setup.py

Lines changed: 20 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,13 @@
33
"""
44
Dyspatch API
55
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.
713
814
OpenAPI spec version: 2018.02
915
Contact: support@dyspatch.io
@@ -13,7 +19,7 @@
1319

1420
from setuptools import setup, find_packages # noqa: H301
1521

16-
NAME = "dyspatch-python-client"
22+
NAME = "dyspatch-python"
1723
VERSION = "1.0.0"
1824
# To install the library, run the following
1925
#
@@ -27,14 +33,21 @@
2733
setup(
2834
name=NAME,
2935
version=VERSION,
30-
description="Dyspatch API",
36+
description="Dyspatch API Client",
3137
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"],
3440
install_requires=REQUIRES,
3541
packages=find_packages(),
3642
include_package_data=True,
3743
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+
""",
4053
)

0 commit comments

Comments
 (0)