forked from discolabs/django-shopify-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (28 loc) · 796 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
31
32
33
34
from setuptools import setup, find_packages
version = __import__('shopify_auth').__version__
setup(
name='django-shopify-auth',
version=version,
description='A simple package for adding Shopify authentication to Django apps.',
long_description=open('README.md').read(),
author='Gavin Ballard',
author_email='gavin@discolabs.com',
url='https://github.com/discolabs/django-shopify-auth',
license='MIT',
packages=find_packages(),
package_data={
'shopify_auth': ['*.html']
},
install_requires=[
'django >=1.8',
'ShopifyAPI >=2.1.5',
'setuptools >=5.7',
'six >=1.9.0',
],
tests_require=[
'model_mommy >=1.2.1',
],
zip_safe=False,
include_package_data=True,
classifiers=[],
)