-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrequirements.txt
executable file
·39 lines (39 loc) · 1.22 KB
/
requirements.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#
####### example-requirements.txt #######
# py -3 -m pip install -r .\requirements.txt --use-feature=2020-resolver
###### Requirements without Version Specifiers ######
buildconfig==0.4
certifi==2020.6.20
chardet==3.0.4
idna==2.10
lxml
Pillow==8.0.0
pinyin==0.4.0
PyYAML==5.3.1
requests==2.24.0
robotframework==3.2.2
urllib3==1.25.10
XlsxWriter==1.3.7
xpinyin==0.5.7
pygame
#
###### Requirements with Version Specifiers ######
# See https://www.python.org/dev/peps/pep-0440/#version-specifiers
# docopt == 0.6.1 # Version Matching. Must be version 0.6.1
# keyring >= 4.1.1 # Minimum version 4.1.1
# coverage != 3.5 # Version Exclusion. Anything except version 3.5
# Mopidy-Dirble ~= 1.1 # Compatible release. Same as >= 1.1, == 1.*
#
###### Refer to other requirements files ######
# -r other-requirements.txt
#
#
###### A particular file ######
# ./downloads/numpy-1.9.2-cp34-none-win32.whl
# http://wxpython.org/Phoenix/snapshot-builds/wxPython_Phoenix-3.0.3.dev1820+49a8884-cp34-none-win_amd64.whl
#
###### Additional Requirements without Version Specifiers ######
# Same as 1st section, just here to show that you can put things in any order.
# rejected
# green
#