mirror of
https://github.com/bringout/oca-ocb-core.git
synced 2026-04-21 16:32:04 +02:00
Initial commit: Core packages
This commit is contained in:
commit
12c29a983b
9512 changed files with 8379910 additions and 0 deletions
71
odoo-bringout-oca-ocb-base/setup.py
Normal file
71
odoo-bringout-oca-ocb-base/setup.py
Normal file
|
|
@ -0,0 +1,71 @@
|
|||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from setuptools import find_packages, setup
|
||||
from os.path import join, dirname
|
||||
|
||||
|
||||
exec(open(join(dirname(__file__), 'odoo', 'release.py'), 'rb').read()) # Load release variables
|
||||
lib_name = 'odoo'
|
||||
|
||||
setup(
|
||||
name='odoo',
|
||||
version=version,
|
||||
description=description,
|
||||
long_description=long_desc,
|
||||
url=url,
|
||||
author=author,
|
||||
author_email=author_email,
|
||||
classifiers=[c for c in classifiers.split('\n') if c],
|
||||
license=license,
|
||||
scripts=['setup/odoo'],
|
||||
packages=find_packages(),
|
||||
package_dir={'%s' % lib_name: 'odoo'},
|
||||
include_package_data=True,
|
||||
install_requires=[
|
||||
'babel >= 1.0',
|
||||
'chardet',
|
||||
'cryptography',
|
||||
'decorator',
|
||||
'docutils',
|
||||
'gevent',
|
||||
'greenlet',
|
||||
'idna',
|
||||
'Jinja2',
|
||||
'lxml', # windows binary http://www.lfd.uci.edu/~gohlke/pythonlibs/
|
||||
'libsass',
|
||||
'MarkupSafe',
|
||||
'num2words',
|
||||
'ofxparse',
|
||||
'passlib',
|
||||
'pillow', # windows binary http://www.lfd.uci.edu/~gohlke/pythonlibs/
|
||||
'polib',
|
||||
'psutil', # windows binary code.google.com/p/psutil/downloads/list
|
||||
'psycopg2 >= 2.2',
|
||||
'pydot',
|
||||
'pyopenssl',
|
||||
'PyPDF2',
|
||||
'pyserial',
|
||||
'python-dateutil',
|
||||
'python-stdnum',
|
||||
'pytz',
|
||||
'pyusb >= 1.0.0b1',
|
||||
'qrcode',
|
||||
'reportlab', # windows binary pypi.python.org/pypi/reportlab
|
||||
'requests',
|
||||
'urllib3',
|
||||
'vobject',
|
||||
'werkzeug',
|
||||
'xlrd',
|
||||
'xlsxwriter',
|
||||
'xlwt',
|
||||
'zeep',
|
||||
],
|
||||
python_requires='>=3.7',
|
||||
extras_require={
|
||||
'ldap': ['python-ldap'],
|
||||
},
|
||||
tests_require=[
|
||||
'freezegun',
|
||||
],
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue