forked from discolabs/django-shopify-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (28 loc) · 848 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(),
long_description_content_type='text/markdown',
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 >=2.2',
'ShopifyAPI >=8.0.0',
'setuptools >=5.7',
'ua-parser >=0.10.0',
'python-jose >=3.2.0'
],
tests_require=[],
zip_safe=False,
include_package_data=True,
classifiers=[],
)