-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (32 loc) · 1.1 KB
/
setup.py
File metadata and controls
33 lines (32 loc) · 1.1 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
from setuptools import setup
setup(
name='taxjar',
version='2.0.1',
description='Sales tax API client for Python',
author='TaxJar',
author_email='support@taxjar.com',
url='https://github.com/taxjar/taxjar-python',
download_url='https://github.com/taxjar/taxjar-python/archive/refs/tags/v2.0.1.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'
]
)