-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
37 lines (33 loc) · 1.32 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/usr/bin/env python
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
dependencies = ['typing_extensions>=3.7.4', 'requests>=2.23.0', 'dataclasses>=0.6', 'dataclasses-json>=0.5.4',
'marshmallow>=3.12.2']
setuptools.setup(
name="servicestack",
version="0.1.7",
author="ServiceStack, Inc.",
author_email="team@servicestack.net",
description="ServiceStack Python Service Clients",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ServiceStack/servicestack-python",
license="BSD-3-Clause",
keywords='servicestack,client,dotnet',
install_requires=dependencies,
packages=setuptools.find_packages(),
tests_require=['pytest', 'dataclasses>=0.6', 'dataclasses-json>=0.5.4', 'requests>=2.23.0'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
"Operating System :: OS Independent",
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Software Development :: Libraries :: Python Modules'
],
py_modules=["servicestack"],
python_requires='>=3.7',
)