-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
34 lines (32 loc) · 1.03 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
from setuptools import find_packages, setup
setup(
name='django-oscar-invoices',
version='0.2.2',
url='https://github.com/django-oscar/django-oscar-invoices',
author='Metaclass Team',
author_email='[email protected]',
description='Invoices generation 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 :: 4.0',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: Unix',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9.18',
],
install_requires=[
'phonenumbers',
'pillow',
'django>=3.2',
'django-oscar>=3.2.2',
'django-phonenumber-field>=6.4.0',
]
)