-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
executable file
·30 lines (29 loc) · 1.04 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(name='django-oscar-avalara',
version='0.2.1',
url='https://github.com/django-oscar/django-oscar-avalara',
author="David Winterbottom",
author_email="[email protected]",
description="Avalara integration for django-oscar",
long_description=open('README.rst').read(),
keywords="Taxes, Avalara",
license='BSD',
packages=find_packages(exclude=['sandbox*', 'tests*']),
include_package_data=True,
install_requires=[
'django-oscar>=1.6,<2',
'requests',
'purl>=0.8',
],
# See http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: Unix',
'Programming Language :: Python']
)