-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (20 loc) · 674 Bytes
/
setup.py
File metadata and controls
25 lines (20 loc) · 674 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
from setuptools import setup, find_packages
version = __import__('shopify_webhook').__version__
setup(
name = 'django-shopify-webhook',
version = version,
description = 'A package for the creation of Shopify Apps using the Embedded App SDK.',
long_description = open('README.md').read(),
long_description_content_type='text/markdown',
author = 'Gavin Ballard',
author_email = 'gavin@discolabs.com',
url = 'https://github.com/stlk/django-shopify-webhook',
license = 'None',
packages = find_packages(),
install_requires = [
'django >=3.2',
'setuptools >=5.7'
],
zip_safe = True,
classifiers = [],
)