-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
executable file
·31 lines (29 loc) · 1.02 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
#!/usr/bin/env python
from setuptools import find_packages, setup
from oscar_promotions import VERSION
setup(
name='django-oscar-promotions',
version=VERSION,
url='https://github.com/django-oscar/django-oscar-promotions',
author='Oscar Team',
author_email='sasha@metaclass.co',
description='Promotions for Django Oscar',
long_description=open('README.rst').read(),
license='BSD',
packages=find_packages(exclude=['sandbox*', 'tests*']),
include_package_data=True,
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 2.0',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: Unix',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
install_requires=['django>=2.2,<3.3', 'django-oscar>=2.0,<2.3'],
)