Skip to content

Commit 6675b37

Browse files
committed
Add SDK
1 parent d52a2a6 commit 6675b37

9 files changed

Lines changed: 1065 additions & 1 deletion

File tree

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ A utility library for [Xee API](https://dev.xee.com) with Python 3.
66
77
## Install
88

9-
`pip install xee`
9+
* TODO: `pip install xee`
10+
* CURRENT: Clone and setup install :)
1011

1112
## Initializing the SDK
1213

requirements.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
isodate
2+
requests

setup.py

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
#!/usr/bin/env python
2+
# coding: utf-8
3+
4+
from setuptools import setup, find_packages
5+
6+
exec(open("xee/version.py").read())
7+
8+
setup(
9+
name='xee',
10+
version=__version__,
11+
packages=find_packages(),
12+
author='quentin7b',
13+
description='SDK for Xee APIs (https://dev.xee.com)',
14+
long_description=open('README.md').read(),
15+
install_requires=[
16+
'isodate',
17+
'requests'
18+
],
19+
include_package_data=True,
20+
url='http://github.com/quentin7b/xee-sdk-python',
21+
classifiers=[
22+
"Programming Language :: Python",
23+
"Development Status :: 5 - Production/Stable",
24+
"License :: OSI Approved :: Apache Software License",
25+
"Natural Language :: English",
26+
"Operating System :: OS Independent",
27+
"Programming Language :: Python :: 3",
28+
"Topic :: Software Development",
29+
"Topic :: Software Development :: Libraries",
30+
"Topic :: Software Development :: Libraries :: Python Modules"
31+
],
32+
)

xee/__init__.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/usr/bin/env python
2+
# coding: utf8
3+
"""
4+
This package contains Xee python SDK.
5+
This SDK maps the request you can send to Xee APIs (see dev.xee.com).
6+
"""
7+
8+
from .sdk import Xee

0 commit comments

Comments
 (0)