-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
48 lines (45 loc) · 1.48 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from setuptools import setup, find_packages
from shop_sendcloud import __version__
with open('README.md', 'r') as fh:
long_description = fh.read()
CLASSIFIERS = [
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Framework :: Django',
'Framework :: Django :: 2.1',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.0',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
]
setup(
author="Jacob Rief",
author_email="jacob.rief@gmail.com",
name='djangoshop-sendcloud',
version=__version__,
description='SendCloud Shipping Provider Integration for django-shop',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/jrief/djangoshop-sendcloud',
license='MIT License',
platforms=['OS Independent'],
classifiers=CLASSIFIERS,
install_requires=[
'requests',
'django-phonenumber-field',
'phonenumbers',
],
packages=find_packages(),
include_package_data=True,
zip_safe=False,
)