mirror of
https://github.com/odoo-ide/pydevd-odoo.git
synced 2025-12-17 16:29:02 +02:00
14 lines
365 B
Python
14 lines
365 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='pydevd-odoo',
|
|
version='0.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(),
|
|
license='MIT',
|
|
long_description=open('README.md').read(),
|
|
)
|