X Tutup
Skip to content

Commit ef47c4a

Browse files
committed
make a pip package
1 parent f850b3f commit ef47c4a

File tree

6 files changed

+35
-0
lines changed

6 files changed

+35
-0
lines changed

quickbooks/__init__.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# -*- coding: utf-8 -*-
2+
#
3+
# Author: Pavel Reznikov <pashka.reznikov@gmail.com>
4+
# Created: 14-10-15
5+
#
6+
# Id: $Id$
7+
8+
from quickbooks import *
9+
from massage import *
10+
from reference import *
11+
from report import *
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

setup.py

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
from setuptools import setup, find_packages
2+
3+
4+
VERSION = (0, 2)
5+
version = '.'.join(map(str, VERSION))
6+
7+
setup(
8+
name='quickbooks',
9+
version=version,
10+
author='Simon Vansintjan',
11+
author_email='svansintjan@gmail.com',
12+
description='A really simple, brute-force, Python class for accessing the Quickbooks API.',
13+
url='https://github.com/simonv3/quickbooks-python',
14+
license='MIT',
15+
16+
install_requires=[
17+
'setuptools',
18+
'rauth',
19+
'simplejson',
20+
'python-dateutil',
21+
],
22+
23+
packages=find_packages(),
24+
)

0 commit comments

Comments
 (0)
X Tutup