forked from freakboy3742/pyxero
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
53 lines (47 loc) · 1.73 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#/usr/bin/env python
import io
import re
from setuptools import setup
with io.open('./xero/__init__.py', encoding='utf8') as version_file:
version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", version_file.read(), re.M)
if version_match:
version = version_match.group(1)
else:
raise RuntimeError("Unable to find version string.")
with io.open('README.md', encoding='utf8') as readme:
long_description = readme.read()
setup(
name='pyxero',
version=version,
description='Python API for accessing the REST API of the Xero accounting tool.',
long_description=long_description,
author='Russell Keith-Magee',
author_email='[email protected]',
url='http://github.com/freakboy3742/pyxero',
packages=['xero', ],
install_requires=[
'six>=1.8.0',
'requests>=1.1.0',
'requests-oauthlib>=0.3.0',
'python-dateutil>=2.1',
'PyJWT==1.4.0', # This is required as part of oauthlib but doesn't seem to get included sometimes.
'cryptography>=1.3.1', # As above, but fixes issue with missing module imports not picked up for some reason.
],
tests_require=[
'mock',
],
license='New BSD',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Financial and Insurance Industry',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Office/Business :: Financial :: Accounting',
],
test_suite="tests",
)