forked from matecsaj/ebay_rest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
requirements_dev.txt
42 lines (34 loc) · 999 Bytes
/
requirements_dev.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
40
41
# Development Environment
# All instructions presume that you are using a virtual environment and running a terminal in the project's root directory.
# Install dependencies in a new virtual environment.
# pip install -r requirements_dev.txt
# To upgrade your installed packages.
# pip install --upgrade -r requirements_dev.txt
# to install a specific version the request library
# requests==2.22.0
# to install the latest stable version the request library
# requests>=2.22.0
# to install the latest stable version the request library but never 2.23.0
# requests>=2.22.0, != 2.23.0
# Determine the current combined development and production requirements.
# pipreqs -- print scr
# For production requirements, the following must match what is found in setup.cfg
certifi
cryptography
python_dateutil
requests
selenium
six
urllib3
# Development-specific requirements.
# For generate_code.py.
aiofiles
aiohttp
bs4
CurrencyConverter
# For releasing to PyPI.
build
pipreqs
setuptools
twine
wheel