forked from suvit/python-commerceml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (32 loc) · 957 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
30
31
32
33
34
35
36
37
# -*- coding: utf-8 -
#
# This file is part of python-commerceml released under the MIT license.
# See the NOTICE for more information.
import os
import sys
from setuptools import setup, find_packages
from commerceml import VERSION
setup(
name='python-commerceml',
version=VERSION,
description='Itegration between python ecommerce frameworks and 1c',
long_description=file(
os.path.join(
os.path.dirname(__file__),
'README.md'
)
).read(),
author='Victor Safronovich',
author_email='[email protected]',
license='MIT',
url='http://github.com/suvit/python-commerceml',
zip_safe=False,
packages=find_packages(exclude=['docs', 'examples', 'tests']),
#install_requires=['lxml', 'elementflow'],
extras_require = {
'django': ['django',
'django-appconf',
'django-dbsettings'],
},
include_package_data=True,
)