=
commited on
Commit
·
a69a321
1
Parent(s):
28c2eed
ignored config files
Browse files- .gitignore +1 -0
- .idea/.gitignore +0 -3
- .idea/deep_translator.iml +0 -17
- .idea/inspectionProfiles/profiles_settings.xml +0 -6
- .idea/misc.xml +0 -4
- .idea/modules.xml +0 -8
- .idea/vcs.xml +0 -6
- deep_translator/__init__.py +2 -1
.gitignore
CHANGED
@@ -21,6 +21,7 @@ parts/
|
|
21 |
sdist/
|
22 |
var/
|
23 |
.idea/
|
|
|
24 |
wheels/
|
25 |
*.egg-info/
|
26 |
.installed.cfg
|
|
|
21 |
sdist/
|
22 |
var/
|
23 |
.idea/
|
24 |
+
.idea
|
25 |
wheels/
|
26 |
*.egg-info/
|
27 |
.installed.cfg
|
.idea/.gitignore
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
# Default ignored files
|
2 |
-
/shelf/
|
3 |
-
/workspace.xml
|
|
|
|
|
|
|
|
.idea/deep_translator.iml
DELETED
@@ -1,17 +0,0 @@
|
|
1 |
-
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
-
<module type="PYTHON_MODULE" version="4">
|
3 |
-
<component name="NewModuleRootManager">
|
4 |
-
<content url="file://$MODULE_DIR$">
|
5 |
-
<sourceFolder url="file://$MODULE_DIR$/deep_translator" isTestSource="false" />
|
6 |
-
</content>
|
7 |
-
<orderEntry type="jdk" jdkName="Python 3.6 (deep_translator)" jdkType="Python SDK" />
|
8 |
-
<orderEntry type="sourceFolder" forTests="false" />
|
9 |
-
</component>
|
10 |
-
<component name="PyDocumentationSettings">
|
11 |
-
<option name="format" value="EPYTEXT" />
|
12 |
-
<option name="myDocStringFormat" value="Epytext" />
|
13 |
-
</component>
|
14 |
-
<component name="TestRunnerService">
|
15 |
-
<option name="PROJECT_TEST_RUNNER" value="pytest" />
|
16 |
-
</component>
|
17 |
-
</module>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.idea/inspectionProfiles/profiles_settings.xml
DELETED
@@ -1,6 +0,0 @@
|
|
1 |
-
<component name="InspectionProjectProfileManager">
|
2 |
-
<settings>
|
3 |
-
<option name="USE_PROJECT_PROFILE" value="false" />
|
4 |
-
<version value="1.0" />
|
5 |
-
</settings>
|
6 |
-
</component>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.idea/misc.xml
DELETED
@@ -1,4 +0,0 @@
|
|
1 |
-
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
-
<project version="4">
|
3 |
-
<component name="ProjectRootManager" version="2" project-jdk-name="Python 3.6 (deep_translator)" project-jdk-type="Python SDK" />
|
4 |
-
</project>
|
|
|
|
|
|
|
|
|
|
.idea/modules.xml
DELETED
@@ -1,8 +0,0 @@
|
|
1 |
-
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
-
<project version="4">
|
3 |
-
<component name="ProjectModuleManager">
|
4 |
-
<modules>
|
5 |
-
<module fileurl="file://$PROJECT_DIR$/.idea/deep_translator.iml" filepath="$PROJECT_DIR$/.idea/deep_translator.iml" />
|
6 |
-
</modules>
|
7 |
-
</component>
|
8 |
-
</project>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.idea/vcs.xml
DELETED
@@ -1,6 +0,0 @@
|
|
1 |
-
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
-
<project version="4">
|
3 |
-
<component name="VcsDirectoryMappings">
|
4 |
-
<mapping directory="$PROJECT_DIR$" vcs="Git" />
|
5 |
-
</component>
|
6 |
-
</project>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
deep_translator/__init__.py
CHANGED
@@ -7,4 +7,5 @@ __author__ = """Nidhal Baccouri"""
|
|
7 |
__email__ = '[email protected]'
|
8 |
__version__ = '0.1.2'
|
9 |
|
10 |
-
__all__ = [GoogleTranslator,
|
|
|
|
7 |
__email__ = '[email protected]'
|
8 |
__version__ = '0.1.2'
|
9 |
|
10 |
+
__all__ = [GoogleTranslator,
|
11 |
+
PonsTranslator]
|