-
Notifications
You must be signed in to change notification settings - Fork 32
/
setup.py
30 lines (26 loc) · 938 Bytes
/
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
"""Set up file, to install this module : pip install -e ."""
from setuptools import setup
pkg_description = ''
with open('README.md') as f:
pkg_description = f.read()
setup(
name='Avalara',
version='24.12.0',
url='https://github.com/avadev/AvaTax-REST-V2-Python-SDK',
package_dir={'': 'src'},
packages=['avalara'],
author='Han Bao, Adrienne Karnoski, Robert Bronson, Philip Werner, Genevieve Conty',
author_email='[email protected]',
description='Avalara Tax Python SDK.',
long_description=pkg_description,
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6'
],
install_requires=['requests'],
extras_require={
"test": ['pytest', 'pytest-cov', 'tox']
})