mirror of
https://github.com/odoo-ide/pydevd-odoo.git
synced 2025-12-18 00:39:02 +02:00
16 lines
469 B
Python
16 lines
469 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='pydevd-odoo',
|
|
version='1.1',
|
|
description='PyDev.Debugger plugin for Odoo',
|
|
url='https://github.com/trinhanhngoc/pydevd-odoo',
|
|
author='Trinh Anh Ngoc',
|
|
author_email='atw1990@gmail.com',
|
|
packages=find_packages(),
|
|
namespace_packages=['pydevd_plugins.extensions'],
|
|
license='MIT',
|
|
long_description=open('README.md').read(),
|
|
long_description_content_type='text/markdown'
|
|
)
|