-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (44 loc) · 1.33 KB
/
setup.py
File metadata and controls
48 lines (44 loc) · 1.33 KB
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
38
39
40
41
42
43
44
45
46
47
48
"""
SkylabStudio - Python Client
For more information, visit https://studio.skylabtech.ai
"""
from distutils.core import setup
from setuptools import find_packages
with open('README.md') as fp:
LONG_DESCRIPTION = fp.read()
setup(
name='skylab_studio',
version='0.0.15',
author='skylabtech',
author_email='info@skylabtech.ai',
packages=find_packages(),
scripts=[],
url='https://github.com/skylab-tech/studio_client_python',
license='LICENSE.txt',
description='Skylab Studio python client',
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
test_suite="skylabtech.test",
install_requires=[
"aiohttp >= 3.9.3",
"pyvips==2.0.2",
"requests >= 2.0.0"
],
extras_require={
"test": [
"pytest >= 3.0.5",
"pytest-cov >= 2.6.1",
"requests_mock >= 1.5.2",
]
},
classifiers=[
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"License :: OSI Approved :: Apache Software License",
"Development Status :: 5 - Production/Stable",
"Topic :: Communications :: Email"
]
)