gooderp18绿色标准版
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

76 行
1.8KB

  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. from setuptools import find_packages, setup
  4. from os.path import join, dirname
  5. exec(open(join(dirname(__file__), 'odoo', 'release.py'), 'rb').read()) # Load release variables
  6. lib_name = 'odoo'
  7. setup(
  8. name='odoo',
  9. version=version,
  10. description=description,
  11. long_description=long_desc,
  12. url=url,
  13. author=author,
  14. author_email=author_email,
  15. classifiers=[c for c in classifiers.split('\n') if c],
  16. license=license,
  17. scripts=['setup/odoo'],
  18. packages=find_packages(),
  19. package_dir={'%s' % lib_name: 'odoo'},
  20. include_package_data=True,
  21. install_requires=[
  22. 'asn1crypto',
  23. 'babel >= 1.0',
  24. 'cbor2',
  25. 'chardet',
  26. 'cryptography',
  27. 'decorator',
  28. 'docutils',
  29. 'geoip2',
  30. 'gevent',
  31. 'greenlet',
  32. 'idna',
  33. 'Jinja2',
  34. 'lxml', # windows binary http://www.lfd.uci.edu/~gohlke/pythonlibs/
  35. 'libsass',
  36. 'MarkupSafe',
  37. 'num2words',
  38. 'ofxparse',
  39. 'openpyxl',
  40. 'passlib',
  41. 'pillow', # windows binary http://www.lfd.uci.edu/~gohlke/pythonlibs/
  42. 'polib',
  43. 'psutil', # windows binary code.google.com/p/psutil/downloads/list
  44. 'psycopg2 >= 2.2',
  45. 'pyopenssl',
  46. 'PyPDF2',
  47. 'pyserial',
  48. 'python-dateutil',
  49. 'python-stdnum',
  50. 'pytz',
  51. 'pyusb >= 1.0.0b1',
  52. 'qrcode',
  53. 'reportlab', # windows binary pypi.python.org/pypi/reportlab
  54. 'rjsmin',
  55. 'requests',
  56. 'urllib3',
  57. 'vobject',
  58. 'werkzeug',
  59. 'xlrd',
  60. 'xlsxwriter',
  61. 'xlwt',
  62. 'zeep',
  63. ],
  64. python_requires='>=3.10',
  65. extras_require={
  66. 'ldap': ['python-ldap'],
  67. },
  68. tests_require=[
  69. 'freezegun',
  70. ],
  71. )
上海开阖软件有限公司 沪ICP备12045867号-1