forked from mykljohn/django-oscar-support
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (27 loc) · 932 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='django-oscar-support',
version='0.2.0',
url='https://github.com/tangentlabs/django-oscar-support',
author="Sebastian Vetter",
author_email="[email protected]",
description="Ticketing and customer support for Oscar",
long_description=open('README.rst').read(),
keywords="django, oscar, e-commerce, customer support, issue tracking",
license='BSD',
platforms=['linux'],
packages=find_packages(exclude=["sandbox*", "tests*"]),
include_package_data=True,
install_requires=[
'django-shortuuidfield',
'django-extensions',
],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: Unix',
'Programming Language :: Python'
]
)