fix setup

This commit is contained in:
wilsongomez 2022-02-22 09:41:33 -05:00
parent bf7f20bc04
commit baad2dc140
1 changed files with 1 additions and 8 deletions

View File

@ -6,10 +6,7 @@ from setuptools import setup
import re
import os
import io
try:
from configparser import ConfigParser
except ImportError:
from ConfigParser import ConfigParser
from configparser import ConfigParser
MODULE = 'hotel'
PREFIX = 'trytonpsk'
@ -112,8 +109,4 @@ setup(name=name,
test_suite='tests',
test_loader='trytond.test_loader:Loader',
tests_require=tests_require,
use_2to3=True,
convert_2to3_doctests=[
'tests/scenario.rst',
],
)