-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
33 lines (32 loc) · 1.09 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
from setuptools import setup
setup(
name='taxjar',
version='2.0.0',
description='Sales tax API client for Python',
author='TaxJar',
author_email='[email protected]',
url='https://github.com/taxjar/taxjar-python',
download_url='https://github.com/taxjar/taxjar-python/archive/v2.0.0.zip',
packages=['taxjar', 'taxjar.data'],
classifiers=[
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"Topic :: Office/Business",
"Topic :: Office/Business :: Financial",
"Topic :: Office/Business :: Financial :: Accounting",
"Topic :: Software Development :: Libraries :: Python Modules"
],
install_requires=[
'requests >= 2.13.0',
'jsonobject >= 0.9.10'
],
tests_require=[
'mock'
]
)