Files
pydevd-odoo/setup.py
Trinh Anh Ngoc 72b50abee1 1.1
2020-10-24 22:04:07 +07:00

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'
)