= commited on
Commit
c2b5f71
·
1 Parent(s): 6a08467

added requirements

Browse files
Files changed (4) hide show
  1. .idea/deep_translator.iml +1 -1
  2. .idea/misc.xml +1 -1
  3. requirements.txt +20 -0
  4. setup.py +3 -1
.idea/deep_translator.iml CHANGED
@@ -4,7 +4,7 @@
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.7 (deep_translator)" jdkType="Python SDK" />
8
  <orderEntry type="sourceFolder" forTests="false" />
9
  </component>
10
  <component name="PyDocumentationSettings">
 
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">
.idea/misc.xml CHANGED
@@ -1,4 +1,4 @@
1
  <?xml version="1.0" encoding="UTF-8"?>
2
  <project version="4">
3
- <component name="ProjectRootManager" version="2" project-jdk-name="Python 3.7 (deep_translator)" project-jdk-type="Python SDK" />
4
  </project>
 
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>
requirements.txt ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ attrs==19.3.0
2
+ beautifulsoup4==4.9.1
3
+ bs4==0.0.1
4
+ certifi==2020.4.5.1
5
+ chardet==3.0.4
6
+ idna==2.9
7
+ importlib-metadata==1.6.1
8
+ more-itertools==8.3.0
9
+ packaging==20.4
10
+ pluggy==0.13.1
11
+ py==1.8.1
12
+ pyparsing==2.4.7
13
+ pytest==5.4.3
14
+ pytest-runner==5.2
15
+ requests==2.23.0
16
+ six==1.15.0
17
+ soupsieve==2.0.1
18
+ urllib3==1.25.9
19
+ wcwidth==0.2.3
20
+ zipp==3.1.0
setup.py CHANGED
@@ -10,7 +10,9 @@ with open('README.rst') as readme_file:
10
  with open('HISTORY.rst') as history_file:
11
  history = history_file.read()
12
 
13
- requirements = ['requests', 'bs4']
 
 
14
 
15
  setup_requirements = ['pytest-runner', ]
16
 
 
10
  with open('HISTORY.rst') as history_file:
11
  history = history_file.read()
12
 
13
+
14
+ with open('requirements.txt') as reqs:
15
+ requirements = reqs.read()
16
 
17
  setup_requirements = ['pytest-runner', ]
18