|
5 | 5 | with open("README.md", "r", encoding="utf-8") as fh:
|
6 | 6 | long_description = fh.read()
|
7 | 7 |
|
8 |
| -dependencies = ['dataclasses-json>=0.5.4','requests>=2.25.1'] |
| 8 | +dependencies = ['requests>=2.25.1', 'dataclasses>=0.6', 'dataclasses-json>=0.5.4', 'marshmallow>=3.12.2'] |
9 | 9 |
|
10 | 10 | setuptools.setup(
|
11 | 11 | name="servicestack",
|
12 | 12 | version="0.0.1",
|
13 | 13 | author="ServiceStack, Inc.",
|
14 | 14 |
|
15 |
| - description="ServiceStack Python Client", |
| 15 | + description="ServiceStack Python Service Clients", |
16 | 16 | long_description=long_description,
|
17 | 17 | long_description_content_type="text/markdown",
|
18 | 18 | url="https://github.com/ServiceStack/servicestack-python",
|
19 | 19 | license="BSD-3-Clause",
|
20 | 20 | keywords='servicestack,client,dotnet',
|
21 | 21 | install_requires=dependencies,
|
22 | 22 | packages=setuptools.find_packages(),
|
23 |
| - tests_require=['pytest','dataclasses-json>=0.5.4','requests>=2.25.1'], |
| 23 | + tests_require=['pytest', 'dataclasses>=0.6', 'dataclasses-json>=0.5.4', 'requests>=2.25.1'], |
24 | 24 | classifiers=[
|
25 | 25 | 'Intended Audience :: Developers',
|
26 | 26 | 'License :: OSI Approved :: BSD License',
|
|
0 commit comments