This commit is contained in:
Trinh Anh Ngoc
2020-03-21 22:03:55 +07:00
parent 5be35c2c40
commit 8fa2b0f257
7 changed files with 75 additions and 0 deletions

13
setup.py Normal file
View File

@@ -0,0 +1,13 @@
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(),
)