|
1 | 1 | # coding: utf-8 |
2 | | - |
3 | 2 | """ |
4 | 3 | Dyspatch API |
5 | 4 |
|
|
15 | 14 | Contact: support@dyspatch.io |
16 | 15 | Generated by: https://github.com/swagger-api/swagger-codegen.git |
17 | 16 | """ |
18 | | - |
19 | | - |
20 | 17 | from setuptools import setup, find_packages # noqa: H301 |
21 | 18 |
|
22 | 19 | NAME = "dyspatch-python" |
|
30 | 27 |
|
31 | 28 | REQUIRES = ["urllib3 >= 1.15", "six >= 1.10", "certifi", "python-dateutil"] |
32 | 29 |
|
| 30 | +with open("README.md") as fp: |
| 31 | + long_description = fp.read() |
| 32 | + |
33 | 33 | setup( |
34 | 34 | name=NAME, |
35 | 35 | version=VERSION, |
36 | 36 | description="Dyspatch API Client", |
| 37 | + author="Dyspatch", |
37 | 38 | author_email="support@dyspatch.io", |
38 | 39 | url="https://github.com/getdyspatch/dyspatch-python", |
39 | 40 | keywords=["Swagger", "Dyspatch API", "OpenAPI"], |
40 | 41 | install_requires=REQUIRES, |
41 | 42 | packages=find_packages(), |
42 | 43 | include_package_data=True, |
43 | | - long_description="""\ |
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 | | - """, |
| 44 | + long_description=long_description, |
53 | 45 | ) |
0 commit comments