forked from discolabs/django-shopify-sync
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (25 loc) · 787 Bytes
/
setup.py
File metadata and controls
31 lines (25 loc) · 787 Bytes
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
from setuptools import setup, find_packages
version = __import__('shopify_sync').__version__
setup(
name = 'django-shopify-sync',
version = version,
description = 'A package for synchronising Django models with Shopify resources.',
long_description = open('README.rst').read(),
author = 'Gavin Ballard',
author_email = 'gavin@gavinballard.com',
url = 'https://github.com/gavinballard/django-shopify-sync',
license = 'MIT',
packages = find_packages(),
install_requires = [
'django >=1.7',
'django-shopify-webhook >=0.2.6',
'ShopifyAPI >=2.1.1',
'jsonfield >=0.9.22',
],
tests_require = [
'python-dateutil >=2.4.2',
'model_mommy >=1.2.1',
],
zip_safe=True,
classifiers=[],
)